diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-11-07 16:46:27 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 14:40:10 +0200 |
commit | 9168e8a26d9704af751c2cd42224ab13fbbc843e (patch) | |
tree | 46e031f5cdf8614b54faa24ae02c9b74aebcdd6c | |
parent | 1577d2165b9ba328fe4618c8d63c37aa93430884 (diff) |
updated to include bitwise XOR (^) object
svn path=/trunk/abstractions/purepd/; revision=14291
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | ^-help.pd | 11 | ||||
-rw-r--r-- | ^.pd (renamed from 0x5e.pd) | 0 | ||||
-rw-r--r-- | purepd-meta.pd | 2 |
4 files changed, 13 insertions, 2 deletions
@@ -9,7 +9,7 @@ SOURCES = # list all pd objects (i.e. myobject.pd) files here, and their helpfiles will # be included automatically -PDOBJECTS = alternate.pd any_argument.pd clip.pd cosh.pd delta.pd delta~.pd fifo.pd float_argument.pd for++.pd gt2~.pd gt~.pd inv.pd log10.pd lt2~.pd lt~.pd moses.pd once.pd oneshot.pd purepd_error.pd sgn~.pd sinh.pd symbol_argument.pd tanh.pd uzi.pd velocity.pd +PDOBJECTS = ^.pd alternate.pd any_argument.pd clip.pd cosh.pd delta.pd delta~.pd fifo.pd float_argument.pd for++.pd gt2~.pd gt~.pd inv.pd log10.pd lt2~.pd lt~.pd moses.pd once.pd oneshot.pd purepd_error.pd sgn~.pd sinh.pd symbol_argument.pd tanh.pd uzi.pd velocity.pd # example patches and related files, in the 'examples' subfolder EXAMPLES = diff --git a/^-help.pd b/^-help.pd new file mode 100644 index 0000000..4b61cf1 --- /dev/null +++ b/^-help.pd @@ -0,0 +1,11 @@ +#N canvas 257 232 450 300 10; +#X obj 140 147 ^; +#X floatatom 140 179 5 0 0 0 - - -; +#X msg 155 118 3; +#X msg 120 118 2; +#X text 37 48 ^ is the symbol in the C programming language for bitwise +XOR (exclusive OR). It is also often used for "to the power of" \, +but not in this object.; +#X connect 0 0 1 0; +#X connect 2 0 0 1; +#X connect 3 0 0 0; diff --git a/purepd-meta.pd b/purepd-meta.pd index 70604d8..e58e01c 100644 --- a/purepd-meta.pd +++ b/purepd-meta.pd @@ -4,5 +4,5 @@ #X text 10 30 NAME purepd; #X text 10 50 LICENSE GNU GPL; #X text 10 70 DESCRIPTION existing objects reimplemented in Pd; -#X text 10 90 VERSION 0.2-svn; +#X text 10 90 VERSION 0.1; #X restore 10 10 pd META; |