From 0afeb7e9fab7b1ec8787d88b3d5ce0914f0d0b0d Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 2 Oct 2003 03:39:51 +0000 Subject: converted helpfiles to 0.37 svn path=/trunk/externals/markex/; revision=1059 --- alternate-help.pd | 15 +++++++++++++++ alternate.c | 4 +++- gem_average-help.pd | 18 ++++++++++++++++++ gem_average.c | 4 +++- gem_change-help.pd | 13 +++++++++++++ gem_change.c | 4 +++- gem_counter-help.pd | 33 +++++++++++++++++++++++++++++++++ gem_counter.c | 4 +++- help-alternate.pd | 15 --------------- help-gem_average.pd | 18 ------------------ help-gem_change.pd | 13 ------------- help-gem_counter.pd | 33 --------------------------------- help-invert.pd | 10 ---------- help-oneshot.pd | 11 ----------- help-randomF.pd | 12 ------------ help-strcat.pd | 12 ------------ help-tripleLine.pd | 17 ----------------- help-tripleRand.pd | 19 ------------------- invert-help.pd | 10 ++++++++++ invert.c | 4 +++- multiselect.c | 4 +++- oneshot-help.pd | 11 +++++++++++ oneshot.c | 4 +++- randomF-help.pd | 12 ++++++++++++ randomF.c | 4 +++- strcat-help.pd | 12 ++++++++++++ strcat.c | 4 +++- tripleLine-help.pd | 17 +++++++++++++++++ tripleLine.c | 4 +++- tripleRand-help.pd | 19 +++++++++++++++++++ tripleRand.c | 4 +++- 31 files changed, 193 insertions(+), 171 deletions(-) create mode 100644 alternate-help.pd create mode 100644 gem_average-help.pd create mode 100644 gem_change-help.pd create mode 100644 gem_counter-help.pd delete mode 100644 help-alternate.pd delete mode 100644 help-gem_average.pd delete mode 100644 help-gem_change.pd delete mode 100644 help-gem_counter.pd delete mode 100644 help-invert.pd delete mode 100644 help-oneshot.pd delete mode 100644 help-randomF.pd delete mode 100644 help-strcat.pd delete mode 100644 help-tripleLine.pd delete mode 100644 help-tripleRand.pd create mode 100644 invert-help.pd create mode 100644 oneshot-help.pd create mode 100644 randomF-help.pd create mode 100644 strcat-help.pd create mode 100644 tripleLine-help.pd create mode 100644 tripleRand-help.pd diff --git a/alternate-help.pd b/alternate-help.pd new file mode 100644 index 0000000..e79f2f8 --- /dev/null +++ b/alternate-help.pd @@ -0,0 +1,15 @@ +#N canvas 296 299 600 500 10; +#X text 124 68 GEM object; +#X msg 170 156 1; +#X obj 123 298 print out1; +#X obj 123 219 alternate; +#X msg 123 155 bang; +#X msg 219 155 reset; +#X obj 190 263 print out2; +#X text 91 390 [alternate] between two outputs; +#X text 138 23 [alternate]; +#X connect 1 0 3 0; +#X connect 3 0 2 0; +#X connect 3 1 6 0; +#X connect 4 0 3 0; +#X connect 5 0 3 0; diff --git a/alternate.c b/alternate.c index a2d7ed0..0042c74 100644 --- a/alternate.c +++ b/alternate.c @@ -73,6 +73,8 @@ void alternate_setup(void) class_addmethod(alternate_class, (t_method)alternate_list, gensym("list"), A_GIMME, A_NULL); - class_sethelpsymbol(alternate_class, gensym("help-alternate")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(alternate_class, gensym("alternate-help.pd")); +#endif } diff --git a/gem_average-help.pd b/gem_average-help.pd new file mode 100644 index 0000000..fb923f3 --- /dev/null +++ b/gem_average-help.pd @@ -0,0 +1,18 @@ +#N canvas 271 381 600 500 10; +#X text 124 68 GEM object; +#X obj 123 298 print out1; +#X obj 123 220 average; +#X floatatom 123 160 0 0 0; +#X msg 184 162 bang; +#X msg 247 164 reset 5; +#X msg 345 168 clear; +#X text 89 408 The initial argument is the number to average together. +The default is 10 numbers.; +#X obj 421 231 average 20; +#X text 139 23 [average]; +#X text 81 371 [average] together a series of numbers.; +#X connect 2 0 1 0; +#X connect 3 0 2 0; +#X connect 4 0 2 0; +#X connect 5 0 2 0; +#X connect 6 0 2 0; diff --git a/gem_average.c b/gem_average.c index 80edf85..1a82dcc 100644 --- a/gem_average.c +++ b/gem_average.c @@ -78,6 +78,8 @@ void gem_average_setup(void) class_addmethod(gem_average_class, (t_method)gem_average_clear, gensym("clear"), A_NULL); class_addmethod(gem_average_class, (t_method)gem_average_reset, gensym("reset"), A_FLOAT, 0); - class_sethelpsymbol(gem_average_class, gensym("help-gem_average")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(gem_average_class, gensym("gem_average-help.pd")); +#endif } diff --git a/gem_change-help.pd b/gem_change-help.pd new file mode 100644 index 0000000..c02ddd1 --- /dev/null +++ b/gem_change-help.pd @@ -0,0 +1,13 @@ +#N canvas 356 327 600 500 10; +#X text 124 68 GEM object; +#X obj 123 298 print out1; +#X obj 123 219 change; +#X msg 123 156 0; +#X msg 166 154 1; +#X text 138 23 [change]; +#X text 58 360 [change] only outputs when the inlet receives a value +that is different than the previous value.; +#X text 57 404 [change] is very nice for the == and > objects.; +#X connect 2 0 1 0; +#X connect 3 0 2 0; +#X connect 4 0 2 0; diff --git a/gem_change.c b/gem_change.c index a577868..dc714ec 100644 --- a/gem_change.c +++ b/gem_change.c @@ -42,5 +42,7 @@ void gem_change_setup(void) sizeof(t_gem_change), 0, A_NULL); class_addfloat(gem_change_class, gem_change_float); - class_sethelpsymbol(gem_change_class, gensym("help-gem_change")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(gem_change_class, gensym("gem_change-help.pd")); +#endif } diff --git a/gem_counter-help.pd b/gem_counter-help.pd new file mode 100644 index 0000000..84f276e --- /dev/null +++ b/gem_counter-help.pd @@ -0,0 +1,33 @@ +#N canvas 597 145 600 590 10; +#X text 124 68 GEM object; +#X obj 123 298 print out1; +#X text 138 23 counter; +#X msg 123 97 bang; +#X text 58 362 counter counts the number of bangs; +#X obj 123 220 counter 0 5; +#X msg 319 154 bang; +#X text 58 394 The third argument is the direction 1 == up 2 == down 3 == up and down; +#X obj 319 297 print out2; +#X obj 319 219 counter 0 5 3; +#X obj 195 265 print done1; +#X obj 405 267 print done2; +#X text 58 439 The right outlet sends a bang when the counter rolls over. The bang occurs after the left inlet sends the value.; +#X msg 147 129 direction; +#X msg 171 154 low value; +#X msg 195 182 high value; +#X msg 71 176 reset; +#X msg 26 177 clear; +#X text 58 524 A reset message will set the counter back to the starting value and send the value out the left outlet.; +#X text 58 486 A clear message will set the counter back to the starting value.; +#X text 331 189 count from 0 to 5 and back down to 0; +#X connect 3 0 5 0; +#X connect 5 0 1 0; +#X connect 5 1 10 0; +#X connect 6 0 9 0; +#X connect 9 0 8 0; +#X connect 9 1 11 0; +#X connect 13 0 5 1; +#X connect 14 0 5 2; +#X connect 15 0 5 3; +#X connect 16 0 5 0; +#X connect 17 0 5 0; diff --git a/gem_counter.c b/gem_counter.c index da4434f..2c3c476 100644 --- a/gem_counter.c +++ b/gem_counter.c @@ -224,5 +224,7 @@ void gem_counter_setup(void) class_addmethod(gem_counter_class, (t_method)gem_counter_reset, gensym("reset"), A_GIMME, 0); class_addmethod(gem_counter_class, (t_method)gem_counter_clear, gensym("clear"), A_GIMME, 0); - class_sethelpsymbol(gem_counter_class, gensym("help-gem_counter")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(gem_counter_class, gensym("gem_counter-help.pd")); +#endif } diff --git a/help-alternate.pd b/help-alternate.pd deleted file mode 100644 index e79f2f8..0000000 --- a/help-alternate.pd +++ /dev/null @@ -1,15 +0,0 @@ -#N canvas 296 299 600 500 10; -#X text 124 68 GEM object; -#X msg 170 156 1; -#X obj 123 298 print out1; -#X obj 123 219 alternate; -#X msg 123 155 bang; -#X msg 219 155 reset; -#X obj 190 263 print out2; -#X text 91 390 [alternate] between two outputs; -#X text 138 23 [alternate]; -#X connect 1 0 3 0; -#X connect 3 0 2 0; -#X connect 3 1 6 0; -#X connect 4 0 3 0; -#X connect 5 0 3 0; diff --git a/help-gem_average.pd b/help-gem_average.pd deleted file mode 100644 index fb923f3..0000000 --- a/help-gem_average.pd +++ /dev/null @@ -1,18 +0,0 @@ -#N canvas 271 381 600 500 10; -#X text 124 68 GEM object; -#X obj 123 298 print out1; -#X obj 123 220 average; -#X floatatom 123 160 0 0 0; -#X msg 184 162 bang; -#X msg 247 164 reset 5; -#X msg 345 168 clear; -#X text 89 408 The initial argument is the number to average together. -The default is 10 numbers.; -#X obj 421 231 average 20; -#X text 139 23 [average]; -#X text 81 371 [average] together a series of numbers.; -#X connect 2 0 1 0; -#X connect 3 0 2 0; -#X connect 4 0 2 0; -#X connect 5 0 2 0; -#X connect 6 0 2 0; diff --git a/help-gem_change.pd b/help-gem_change.pd deleted file mode 100644 index c02ddd1..0000000 --- a/help-gem_change.pd +++ /dev/null @@ -1,13 +0,0 @@ -#N canvas 356 327 600 500 10; -#X text 124 68 GEM object; -#X obj 123 298 print out1; -#X obj 123 219 change; -#X msg 123 156 0; -#X msg 166 154 1; -#X text 138 23 [change]; -#X text 58 360 [change] only outputs when the inlet receives a value -that is different than the previous value.; -#X text 57 404 [change] is very nice for the == and > objects.; -#X connect 2 0 1 0; -#X connect 3 0 2 0; -#X connect 4 0 2 0; diff --git a/help-gem_counter.pd b/help-gem_counter.pd deleted file mode 100644 index 84f276e..0000000 --- a/help-gem_counter.pd +++ /dev/null @@ -1,33 +0,0 @@ -#N canvas 597 145 600 590 10; -#X text 124 68 GEM object; -#X obj 123 298 print out1; -#X text 138 23 counter; -#X msg 123 97 bang; -#X text 58 362 counter counts the number of bangs; -#X obj 123 220 counter 0 5; -#X msg 319 154 bang; -#X text 58 394 The third argument is the direction 1 == up 2 == down 3 == up and down; -#X obj 319 297 print out2; -#X obj 319 219 counter 0 5 3; -#X obj 195 265 print done1; -#X obj 405 267 print done2; -#X text 58 439 The right outlet sends a bang when the counter rolls over. The bang occurs after the left inlet sends the value.; -#X msg 147 129 direction; -#X msg 171 154 low value; -#X msg 195 182 high value; -#X msg 71 176 reset; -#X msg 26 177 clear; -#X text 58 524 A reset message will set the counter back to the starting value and send the value out the left outlet.; -#X text 58 486 A clear message will set the counter back to the starting value.; -#X text 331 189 count from 0 to 5 and back down to 0; -#X connect 3 0 5 0; -#X connect 5 0 1 0; -#X connect 5 1 10 0; -#X connect 6 0 9 0; -#X connect 9 0 8 0; -#X connect 9 1 11 0; -#X connect 13 0 5 1; -#X connect 14 0 5 2; -#X connect 15 0 5 3; -#X connect 16 0 5 0; -#X connect 17 0 5 0; diff --git a/help-invert.pd b/help-invert.pd deleted file mode 100644 index 22af453..0000000 --- a/help-invert.pd +++ /dev/null @@ -1,10 +0,0 @@ -#N canvas 151 485 600 500 10; -#X text 124 68 GEM object; -#X msg 170 156 1; -#X obj 123 298 print out1; -#X obj 123 219 invert; -#X msg 123 155 0; -#X text 139 22 invert; -#X connect 1 0 3 0; -#X connect 3 0 2 0; -#X connect 4 0 3 0; diff --git a/help-oneshot.pd b/help-oneshot.pd deleted file mode 100644 index f976360..0000000 --- a/help-oneshot.pd +++ /dev/null @@ -1,11 +0,0 @@ -#N canvas 151 485 600 500 10; -#X text 124 68 GEM object; -#X obj 123 298 print out1; -#X msg 123 155 bang; -#X text 138 23 oneshot; -#X obj 123 219 oneshot; -#X msg 188 154 clear; -#X text 61 385 oneshot blocks after the initial bang \, until a clear message is received.; -#X connect 2 0 4 0; -#X connect 4 0 1 0; -#X connect 5 0 4 0; diff --git a/help-randomF.pd b/help-randomF.pd deleted file mode 100644 index 148e7d6..0000000 --- a/help-randomF.pd +++ /dev/null @@ -1,12 +0,0 @@ -#N canvas 749 231 604 504 10; -#X text 124 68 GEM object; -#X msg 123 155 bang; -#X text 138 23 randomF; -#X obj 123 223 randomF 0.5; -#X text 60 385 randomF is a floating point random number generator -; -#X floatatom 195 161 5 0 0 1 range - -; -#X floatatom 123 289 5 0 0 0 - - -; -#X connect 1 0 3 0; -#X connect 3 0 6 0; -#X connect 5 0 3 1; diff --git a/help-strcat.pd b/help-strcat.pd deleted file mode 100644 index 55f2211..0000000 --- a/help-strcat.pd +++ /dev/null @@ -1,12 +0,0 @@ -#N canvas 330 185 454 304 10; -#X obj 181 131 strcat foo; -#X msg 147 58 symbol bar; -#X symbolatom 181 182 0 0 0 0 - - -; -#X text 16 255 [strcat] prepends its text to any symbol that is sent -to it.; -#X msg 173 79 symbol kneipe; -#X msg 195 101 symbol d; -#X connect 0 0 2 0; -#X connect 1 0 0 0; -#X connect 4 0 0 0; -#X connect 5 0 0 0; diff --git a/help-tripleLine.pd b/help-tripleLine.pd deleted file mode 100644 index ed23fe5..0000000 --- a/help-tripleLine.pd +++ /dev/null @@ -1,17 +0,0 @@ -#N canvas 749 231 600 500 10; -#X text 124 68 GEM object; -#X text 138 24 tripleLine; -#X obj 123 223 tripleLine; -#X obj 123 273 unpack 0 0 0; -#X floatatom 123 319; -#X floatatom 168 348; -#X floatatom 214 319; -#X msg 123 157 1 0 0 2000; -#X msg 234 158 0 1 0.1 2000; -#X text 46 406 tripleLine is like the line object except that it works with 3 values at once.; -#X connect 2 0 3 0; -#X connect 3 0 4 0; -#X connect 3 1 5 0; -#X connect 3 2 6 0; -#X connect 7 0 2 0; -#X connect 8 0 2 0; diff --git a/help-tripleRand.pd b/help-tripleRand.pd deleted file mode 100644 index 4e6714f..0000000 --- a/help-tripleRand.pd +++ /dev/null @@ -1,19 +0,0 @@ -#N canvas 132 108 604 504 10; -#X text 124 68 GEM object; -#X obj 136 234 unpack 0 0 0; -#X floatatom 136 280 4 0 0 0 - - -; -#X floatatom 175 280 4 0 0 0 - - -; -#X floatatom 215 280 4 0 0 0 - - -; -#X text 138 24 tripleRine; -#X text 84 395 [tripleRand] generates three distinct random numbers -at once within the range specified.; -#X obj 136 184 tripleRand 5; -#X floatatom 215 146 5 0 0 0 - - -; -#X obj 136 134 bng 15 250 50 0 empty empty empty 0 -6 32 8 -262144 --1 -1; -#X connect 1 0 2 0; -#X connect 1 1 3 0; -#X connect 1 2 4 0; -#X connect 7 0 1 0; -#X connect 8 0 7 1; -#X connect 9 0 7 0; diff --git a/invert-help.pd b/invert-help.pd new file mode 100644 index 0000000..22af453 --- /dev/null +++ b/invert-help.pd @@ -0,0 +1,10 @@ +#N canvas 151 485 600 500 10; +#X text 124 68 GEM object; +#X msg 170 156 1; +#X obj 123 298 print out1; +#X obj 123 219 invert; +#X msg 123 155 0; +#X text 139 22 invert; +#X connect 1 0 3 0; +#X connect 3 0 2 0; +#X connect 4 0 3 0; diff --git a/invert.c b/invert.c index 0b15ec3..431f6d3 100644 --- a/invert.c +++ b/invert.c @@ -37,5 +37,7 @@ void invert_setup(void) sizeof(t_invert), 0, A_NULL); class_addfloat(invert_class, (t_method)invert_float); - class_sethelpsymbol(invert_class, gensym("help-invert")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(invert_class, gensym("invert-help.pd")); +#endif } diff --git a/multiselect.c b/multiselect.c index fcba331..0274d11 100644 --- a/multiselect.c +++ b/multiselect.c @@ -93,5 +93,7 @@ void multiselect_setup(void) class_addmethod(multiselect_class, (t_method)multiselect_params, gensym("params"), A_GIMME, A_NULL); - class_sethelpsymbol(multiselect_class, gensym("help-multiselect")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(multiselect_class, gensym("multiselect-help.pd")); +#endif } diff --git a/oneshot-help.pd b/oneshot-help.pd new file mode 100644 index 0000000..f976360 --- /dev/null +++ b/oneshot-help.pd @@ -0,0 +1,11 @@ +#N canvas 151 485 600 500 10; +#X text 124 68 GEM object; +#X obj 123 298 print out1; +#X msg 123 155 bang; +#X text 138 23 oneshot; +#X obj 123 219 oneshot; +#X msg 188 154 clear; +#X text 61 385 oneshot blocks after the initial bang \, until a clear message is received.; +#X connect 2 0 4 0; +#X connect 4 0 1 0; +#X connect 5 0 4 0; diff --git a/oneshot.c b/oneshot.c index ba2e0a0..f1718b2 100644 --- a/oneshot.c +++ b/oneshot.c @@ -56,6 +56,8 @@ void oneshot_setup(void) class_addfloat(oneshot_class, (t_method)oneshot_float); class_addbang(oneshot_class, (t_method)oneshot_bang); class_addmethod(oneshot_class, (t_method)oneshot_clear, gensym("clear"), A_NULL); - class_sethelpsymbol(oneshot_class, gensym("help-oneshot")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(oneshot_class, gensym("oneshot-help.pd")); +#endif } diff --git a/randomF-help.pd b/randomF-help.pd new file mode 100644 index 0000000..148e7d6 --- /dev/null +++ b/randomF-help.pd @@ -0,0 +1,12 @@ +#N canvas 749 231 604 504 10; +#X text 124 68 GEM object; +#X msg 123 155 bang; +#X text 138 23 randomF; +#X obj 123 223 randomF 0.5; +#X text 60 385 randomF is a floating point random number generator +; +#X floatatom 195 161 5 0 0 1 range - -; +#X floatatom 123 289 5 0 0 0 - - -; +#X connect 1 0 3 0; +#X connect 3 0 6 0; +#X connect 5 0 3 1; diff --git a/randomF.c b/randomF.c index d7e4046..20e7683 100644 --- a/randomF.c +++ b/randomF.c @@ -57,5 +57,7 @@ void randomF_setup(void) class_addbang(randomF_class, (t_method)randomF_bang); - class_sethelpsymbol(randomF_class, gensym("help-randomF")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(randomF_class, gensym("randomF-help.pd")); +#endif } diff --git a/strcat-help.pd b/strcat-help.pd new file mode 100644 index 0000000..55f2211 --- /dev/null +++ b/strcat-help.pd @@ -0,0 +1,12 @@ +#N canvas 330 185 454 304 10; +#X obj 181 131 strcat foo; +#X msg 147 58 symbol bar; +#X symbolatom 181 182 0 0 0 0 - - -; +#X text 16 255 [strcat] prepends its text to any symbol that is sent +to it.; +#X msg 173 79 symbol kneipe; +#X msg 195 101 symbol d; +#X connect 0 0 2 0; +#X connect 1 0 0 0; +#X connect 4 0 0 0; +#X connect 5 0 0 0; diff --git a/strcat.c b/strcat.c index 4c23144..9e227ce 100644 --- a/strcat.c +++ b/strcat.c @@ -59,6 +59,8 @@ void strcat_setup(void) class_addfloat(strcat_class, (t_method)strcat_float); class_addbang(strcat_class, (t_method)strcat_bang); - class_sethelpsymbol(strcat_class, gensym("help-strcat")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(strcat_class, gensym("strcat-help.pd")); +#endif } diff --git a/tripleLine-help.pd b/tripleLine-help.pd new file mode 100644 index 0000000..ed23fe5 --- /dev/null +++ b/tripleLine-help.pd @@ -0,0 +1,17 @@ +#N canvas 749 231 600 500 10; +#X text 124 68 GEM object; +#X text 138 24 tripleLine; +#X obj 123 223 tripleLine; +#X obj 123 273 unpack 0 0 0; +#X floatatom 123 319; +#X floatatom 168 348; +#X floatatom 214 319; +#X msg 123 157 1 0 0 2000; +#X msg 234 158 0 1 0.1 2000; +#X text 46 406 tripleLine is like the line object except that it works with 3 values at once.; +#X connect 2 0 3 0; +#X connect 3 0 4 0; +#X connect 3 1 5 0; +#X connect 3 2 6 0; +#X connect 7 0 2 0; +#X connect 8 0 2 0; diff --git a/tripleLine.c b/tripleLine.c index bc8530d..88d2336 100644 --- a/tripleLine.c +++ b/tripleLine.c @@ -126,7 +126,9 @@ void tripleLine_setup(void) class_addmethod(tripleLine_class, (t_method)setLineParameters, &s_list, A_GIMME, A_NULL); - class_sethelpsymbol(tripleLine_class, gensym("help-tripleLine")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(tripleLine_class, gensym("tripleLine-help.pd")); +#endif } diff --git a/tripleRand-help.pd b/tripleRand-help.pd new file mode 100644 index 0000000..4e6714f --- /dev/null +++ b/tripleRand-help.pd @@ -0,0 +1,19 @@ +#N canvas 132 108 604 504 10; +#X text 124 68 GEM object; +#X obj 136 234 unpack 0 0 0; +#X floatatom 136 280 4 0 0 0 - - -; +#X floatatom 175 280 4 0 0 0 - - -; +#X floatatom 215 280 4 0 0 0 - - -; +#X text 138 24 tripleRine; +#X text 84 395 [tripleRand] generates three distinct random numbers +at once within the range specified.; +#X obj 136 184 tripleRand 5; +#X floatatom 215 146 5 0 0 0 - - -; +#X obj 136 134 bng 15 250 50 0 empty empty empty 0 -6 32 8 -262144 +-1 -1; +#X connect 1 0 2 0; +#X connect 1 1 3 0; +#X connect 1 2 4 0; +#X connect 7 0 1 0; +#X connect 8 0 7 1; +#X connect 9 0 7 0; diff --git a/tripleRand.c b/tripleRand.c index 136dd61..db01aa3 100644 --- a/tripleRand.c +++ b/tripleRand.c @@ -103,7 +103,9 @@ void tripleRand_setup(void) class_addmethod(tripleRand_class, (t_method)setTripleRandVals, gensym("newVals"), A_GIMME, A_NULL); - class_sethelpsymbol(tripleRand_class, gensym("help-tripleRand")); + #if PD_MINOR_VERSION < 37 + class_sethelpsymbol(tripleRand_class, gensym("tripleRand-help.pd")); +#endif } -- cgit v1.2.1