File Name
stringlengths
10
33
Relative Path
stringlengths
24
93
Content
stringlengths
458
3.2k
output
stringlengths
26
2.5k
Number of Records
int64
10
40
Keywords
stringclasses
150 values
Description
stringlengths
2
111
instruction
stringclasses
1 value
input
stringlengths
39
179
02.draw.pd
packages\win64_inno\build\doc\4.data.structures\pd-l2ork\ds-tutorials\02.draw.pd
#N struct drawtut-one float x float y; #N canvas 2 25 495 603 10; #X text 0 1 New Drawing Commands: draw; #X text 0 1 __________________________; #X obj 53 47 struct drawtut-one float x float y; #X text 53 185 Now let's define a shape to associate with this [struct]: ; #X text 53 231 This object starts with the word "draw" followed by the name of an svg shape-- "rect" here. Any arguments after that are coordinates and other data telling Pd how to draw the shape. For convenience \, coordinates are relative to the x/y fields.; #X text 53 359 So how do we draw something? We just type the name we gave to the [struct] into an object box. This will create an object \, referred to in Pd as a "scalar". It will have data for "x" and "y" fields and will use the info in our [draw] object to draw itself on the canvas.; #X text 53 429 Type our [struct] name "drawtut-one" in the box below: ; #X text 53 142 The field names "x" and "y" are special in Pd. Their values will be associated with the base x/y coordinates of what we draw to represent an object created from the [struct] above.; #X text 53 499 That's it! To sum up: once you have a [struct] and some [draw] objects \, you can create a scalar like the one above on any canvas in the running Pd instance. For convenience we created everything in the main patch \, but since there's only one [struct] per canvas you typically will want to keep your [struct] and any [draw] objects in their own subpatch.; #X obj 56 453; #X obj 53 209 draw rect 40 40 0 0; #X text 53 288 Any [draw] object on the same canvas as our [struct] will be used to draw a shape to represent the data structure we've defined here. To keep things organized Pd expects there to be only one [struct] object per canvas. That way it's simple to know which [draw] commands go with which data structure.; #X text 178 208 <- rectangle \, 40x40 pixels at offset (0 \, 0); #N canvas 291 300 450 300 META 0; #X text 16 26 LICENSE SIBSD; #X text 16 66 AUTHOR Jonathan Wilkes; #X text 16 86 HELP_PATCH_AUTHORS Jonathan Wilkes; #X text 16 6 KEYWORDS tutorial data_structure draw gui; #X text 16 46 DESCRIPTION introducing the [draw] command; #X restore 435 575 pd META; #X text 53 23 Let's draw something! First we need a [struct]:; #X text 53 67 The first argument "drawtut-one" is a name for our data. ; #X text 53 88 The other arguments define our data fields. The fields "x" and "y" are names for data fields \, and the word "float" that precedes each one tells Pd that each one should hold a floating point number.;
#N struct drawtut-one float x float y; #N canvas 2 25 495 603 10; #X text 0 1 New Drawing Commands: draw; #X text 0 1 __________________________; #X obj 53 47 struct drawtut-one float x float y; #X text 53 185 Now let's define a shape to associate with this [struct]: ; #X text 53 231 This object starts with the word "draw" followed by the name of an svg shape-- "rect" here. Any arguments after that are coordinates and other data telling Pd how to draw the shape. For convenience \, coordinates are relative to the x/y fields.; #X text 53 359 So how do we draw something? We just type the name we gave to the [struct] into an object box. This will create an object \, referred to in Pd as a "scalar". It will have data for "x" and "y" fields and will use the info in our [draw] object to draw itself on the canvas.; #X text 53 429 Type our [struct] name "drawtut-one" in the box below: ; #X text 53 142 The field names "x" and "y" are special in Pd. Their values will be associated with the base x/y coordinates of what we draw to represent an object created from the [struct] above.; #X text 53 499 That's it! To sum up: once you have a [struct] and some [draw] objects \, you can create a scalar like the one above on any canvas in the running Pd instance. For convenience we created everything in the main patch \, but since there's only one [struct] per canvas you typically will want to keep your [struct] and any [draw] objects in their own subpatch.; #X obj 56 453; #X obj 53 209 draw rect 40 40 0 0; #X text 53 288 Any [draw] object on the same canvas as our [struct] will be used to draw a shape to represent the data structure we've defined here. To keep things organized Pd expects there to be only one [struct] object per canvas. That way it's simple to know which [draw] commands go with which data structure.; #X text 178 208 <- rectangle \, 40x40 pixels at offset (0 \, 0); #X text 53 23 Let's draw something! First we need a [struct]:; #X text 53 67 The first argument "drawtut-one" is a name for our data. ; #X text 53 88 The other arguments define our data fields. The fields "x" and "y" are names for data fields \, and the word "float" that precedes each one tells Pd that each one should hold a floating point number.;
25
tutorial data_structure draw gui
introducing the [draw] command
create a purr-data patch that matches the following description and keywords.
Description: introducing the [draw] command, Keywords: tutorial data_structure draw gui
strippath-help.pd
externals\ext13\strippath-help.pd
#N canvas 0 22 454 304 10; #X obj 113 163 ext13/strippath; #X symbolatom 113 196 0 0 0 0 - - -; #X msg 113 109 symbol /this/is/a/testfile.txt; #X msg 58 88 bang; #X obj 58 109 getdir; #N canvas 463 219 494 344 META 0; #X text 12 125 RELEASE_DATE 2009-06-12; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 105 AUTHOR [email protected]; #X text 12 25 LICENSE GPL v2; #X text 12 45 DESCRIPTION remove path from a filename; #X text 12 85 INLET_1 symbol; #X text 12 65 INLET_0 bang symbol; #X text 12 5 KEYWORDS control symbol_op filter; #X restore 370 271 pd META; #X text 112 24 remove path from a filename; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 3 0 4 0; #X connect 4 0 0 0;
#N canvas 0 22 454 304 10; #X obj 113 163 ext13/strippath; #X symbolatom 113 196 0 0 0 0 - - -; #X msg 113 109 symbol /this/is/a/testfile.txt; #X msg 58 88 bang; #X obj 58 109 getdir; #X text 112 24 remove path from a filename; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 3 0 4 0; #X connect 4 0 0 0;
21
control symbol_op filter
remove path from a filename
create a purr-data patch that matches the following description and keywords.
Description: remove path from a filename, Keywords: control symbol_op filter
weibull-help.pd
externals\maxlib\weibull-help.pd
#N canvas 0 26 467 282 12; #X obj 70 95 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 70 192 5 0 0 0 - - -; #X floatatom 151 94 5 0 0 0 - - -; #X floatatom 233 116 5 0 0 0 - - -; #X obj 70 140 weibull 0.78 1.3; #X text 286 117 t; #X text 204 95 s; #X text 103 247 s and t must be greater than zero; #X text 39 21 weibull :: Weibull distributed random numbers; #N canvas 341 152 494 344 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR Olaf Matthes <[email protected]>; #X text 12 5 KEYWORDS control random; #X text 12 125 OUTLET_0 float; #X text 12 45 DESCRIPTION Weibull distributed random numbers; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X text 12 65 INLET_0 bang; #X restore 410 254 pd META; #X connect 0 0 4 0; #X connect 2 0 4 1; #X connect 3 0 4 2; #X connect 4 0 1 0;
#N canvas 0 26 467 282 12; #X obj 70 95 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 70 192 5 0 0 0 - - -; #X floatatom 151 94 5 0 0 0 - - -; #X floatatom 233 116 5 0 0 0 - - -; #X obj 70 140 weibull 0.78 1.3; #X text 286 117 t; #X text 204 95 s; #X text 103 247 s and t must be greater than zero; #X text 39 21 weibull :: Weibull distributed random numbers; #X connect 0 0 4 0; #X connect 2 0 4 1; #X connect 3 0 4 2; #X connect 4 0 1 0;
25
control random
Weibull distributed random numbers
create a purr-data patch that matches the following description and keywords.
Description: Weibull distributed random numbers, Keywords: control random
pointer_position-help.pd
externals\hcs\pointer_position-help.pd
#N canvas 0 26 462 312 10; #X obj 163 146 pointer_position; #X text 24 38 Get the current (x \, y) location of the pointer in this window.; #X text 25 9 [pointer_position]; #X obj 163 78 tgl 15 1 empty empty empty 0 -6 0 10 -262144 -1 -1 1 1; #X msg 177 103 bang; #X text 191 78 enable/disable all motion events; #X text 215 103 show only next motion event; #N canvas 342 208 494 344 META 0; #X text 12 115 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v3; #X text 12 95 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control canvas_op GUI; #X text 12 45 DESCRIPTION get the current (x \, y) location of the pointer in this window; #X text 12 75 INLET_0 float bang; #X restore 412 292 pd META; #X connect 3 0 0 0; #X connect 4 0 0 0;
#N canvas 0 26 462 312 10; #X obj 163 146 pointer_position; #X text 24 38 Get the current (x \, y) location of the pointer in this window.; #X text 25 9 [pointer_position]; #X obj 163 78 tgl 15 1 empty empty empty 0 -6 0 10 -262144 -1 -1 1 1; #X msg 177 103 bang; #X text 191 78 enable/disable all motion events; #X text 215 103 show only next motion event; #X connect 3 0 0 0; #X connect 4 0 0 0;
18
control canvas_op GUI
get the current (x \, y) location of the pointer in this window
create a purr-data patch that matches the following description and keywords.
Description: get the current (x \, y) location of the pointer in this window, Keywords: control canvas_op GUI
distance_n-help.pd
externals\mapping\distance_n-help.pd
#N canvas 1 53 553 614 10; #X obj 54 428 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 54 96 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 76 97 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 76 244 t b f; #X obj 54 390 distance_n; #X msg 119 365 0.3 0.3 0.5 0.4; #X obj 119 342 loadbang; #X obj 54 279 pack f f f f; #X obj 116 97 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 116 244 t b f; #X obj 156 97 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 156 244 t b f; #X text 126 29 distance from a point and a stream in nd; #X text 173 53 n is the min size of the list send on the inlets; #N canvas 467 227 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 OUTLET_0 float; #X text 12 125 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION distance from a point and a stream in nd ; #X text 12 65 INLET_0 list; #X text 12 85 INLET_1 list; #X restore 493 583 pd META; #X connect 1 0 7 0; #X connect 2 0 3 0; #X connect 3 0 7 0; #X connect 3 1 7 1; #X connect 4 0 0 0; #X connect 5 0 4 1; #X connect 6 0 5 0; #X connect 7 0 4 0; #X connect 8 0 9 0; #X connect 9 0 7 0; #X connect 9 1 7 2; #X connect 10 0 11 0; #X connect 11 0 7 0; #X connect 11 1 7 3;
#N canvas 1 53 553 614 10; #X obj 54 428 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 54 96 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 76 97 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 76 244 t b f; #X obj 54 390 distance_n; #X msg 119 365 0.3 0.3 0.5 0.4; #X obj 119 342 loadbang; #X obj 54 279 pack f f f f; #X obj 116 97 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 116 244 t b f; #X obj 156 97 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 156 244 t b f; #X text 126 29 distance from a point and a stream in nd; #X text 173 53 n is the min size of the list send on the inlets; #X connect 1 0 7 0; #X connect 2 0 3 0; #X connect 3 0 7 0; #X connect 3 1 7 1; #X connect 4 0 0 0; #X connect 5 0 4 1; #X connect 6 0 5 0; #X connect 7 0 4 0; #X connect 8 0 9 0; #X connect 9 0 7 0; #X connect 9 1 7 2; #X connect 10 0 11 0; #X connect 11 0 7 0; #X connect 11 1 7 3;
39
control abstraction
distance from a point and a stream in nd
create a purr-data patch that matches the following description and keywords.
Description: distance from a point and a stream in nd, Keywords: control abstraction
but-help.pd
abstractions\jmmmp\but-help.pd
#N struct 1036-color float x float y float farbe float ynpos; #N canvas 188 69 399 419 10; #X text 12 387 Released under the BSD License; #X text 198 160 Inlets; #X text 198 220 Outlets; #X text 198 90 Arguments; #X text 12 367 (C) 2008 Jo�o Pais - [email protected]; #X text 198 130 - TCL Color; #X text 198 180 - Bang; #X text 198 240 - Bang; #X obj 22 122 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 82 162 print; #X text 24 183 Always the same output; #X text 22 10 [but] - Monochrome Bang Button; #X obj 52 122 but 15 31; #X obj 82 122 but 15 22; #X obj 112 122 but 15 16; #X obj 142 122 but 15 13; #X text 22 40 [but] is a monochrome button that outputs a bang. It serves only to have a different graphic presentation.; #X text 12 337 Done following the concept of [Tot] by J. Kreidler. ; #X text 12 268 To know which colors to use \, have a look at; #X obj 279 268 pd-colors; #X text 198 110 - Size (points); #X text 12 288 Unfortunately \, until Pd gets a "clean" flag \, everytime you use this abstraction you'll be asked to save the patch (which you can if you want).; #N canvas 504 106 494 344 META 0; #X text 12 55 AUTHOR Jo�o Pais <[email protected]>; #X text 12 95 LICENSE BSD; #X text 12 75 LIBRARY jmmmp; #X text 13 115 WEBSITE http://puredata.info/Members/jmmmp; #X text 12 5 DESCRIPTION Monochrome Bang Button; #X text 12 35 KEYWORDS bang GOP; #X text 12 165 INLET_0 - bang; #X text 12 185 OUTLET_0 - bang; #X text 12 135 VERSION 2008; #X restore 342 386 pd META; #X connect 8 0 9 0; #X connect 12 0 9 0; #X connect 13 0 9 0; #X connect 14 0 9 0; #X connect 15 0 9 0;
#N struct 1036-color float x float y float farbe float ynpos; #N canvas 188 69 399 419 10; #X text 12 387 Released under the BSD License; #X text 198 160 Inlets; #X text 198 220 Outlets; #X text 198 90 Arguments; #X text 12 367 (C) 2008 Jo�o Pais - [email protected]; #X text 198 130 - TCL Color; #X text 198 180 - Bang; #X text 198 240 - Bang; #X obj 22 122 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 82 162 print; #X text 24 183 Always the same output; #X text 22 10 [but] - Monochrome Bang Button; #X obj 52 122 but 15 31; #X obj 82 122 but 15 22; #X obj 112 122 but 15 16; #X obj 142 122 but 15 13; #X text 22 40 [but] is a monochrome button that outputs a bang. It serves only to have a different graphic presentation.; #X text 12 337 Done following the concept of [Tot] by J. Kreidler. ; #X text 12 268 To know which colors to use \, have a look at; #X obj 279 268 pd-colors; #X text 198 110 - Size (points); #X text 12 288 Unfortunately \, until Pd gets a "clean" flag \, everytime you use this abstraction you'll be asked to save the patch (which you can if you want).; #X connect 8 0 9 0; #X connect 12 0 9 0; #X connect 13 0 9 0; #X connect 14 0 9 0; #X connect 15 0 9 0;
40
bang GOP
Monochrome Bang Button
create a purr-data patch that matches the following description and keywords.
Description: Monochrome Bang Button, Keywords: bang GOP
tavg~-help.pd
externals\zexy\reference\tavg~-help.pd
#N canvas 0 31 518 348 10; #X floatatom 59 148 0 0 0 0 - - -; #X floatatom 59 254 0 0 0 0 - - -; #X floatatom 129 255 0 0 0 0 - - -; #X obj 59 276 dbtorms; #X floatatom 59 299 0 0 0 0 - - -; #X text 272 269 see also:; #X obj 277 296 env~; #X obj 59 233 env~; #X obj 315 296 envrms~; #X obj 59 173 osc~ 5512.5; #X obj 373 296 avg~; #X obj 129 234 tavg~; #X obj 71 51 tavg~; #X text 130 51 calculates the arithmetic mean of a signal between 2 bangs; #X obj 176 195 metro 1000; #X msg 176 167 bang; #X msg 211 167 stop; #X text 392 23 part of zexy; #N canvas 460 154 494 344 META 0; #X text 12 135 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 115 AUTHOR IOhannes m zmoelnig; #X text 12 45 DESCRIPTION calculates the arithmetic mean of a signal between 2 bangs; #X text 12 75 INLET_0 signal bang; #X text 12 95 OUTLET_0 float; #X text 12 5 KEYWORDS signal conversion; #X restore 463 319 pd META; #X connect 0 0 9 0; #X connect 1 0 3 0; #X connect 3 0 4 0; #X connect 7 0 1 0; #X connect 9 0 7 0; #X connect 9 0 11 0; #X connect 11 0 2 0; #X connect 14 0 11 0; #X connect 15 0 14 0; #X connect 16 0 14 0;
#N canvas 0 31 518 348 10; #X floatatom 59 148 0 0 0 0 - - -; #X floatatom 59 254 0 0 0 0 - - -; #X floatatom 129 255 0 0 0 0 - - -; #X obj 59 276 dbtorms; #X floatatom 59 299 0 0 0 0 - - -; #X text 272 269 see also:; #X obj 277 296 env~; #X obj 59 233 env~; #X obj 315 296 envrms~; #X obj 59 173 osc~ 5512.5; #X obj 373 296 avg~; #X obj 129 234 tavg~; #X obj 71 51 tavg~; #X text 130 51 calculates the arithmetic mean of a signal between 2 bangs; #X obj 176 195 metro 1000; #X msg 176 167 bang; #X msg 211 167 stop; #X text 392 23 part of zexy; #X connect 0 0 9 0; #X connect 1 0 3 0; #X connect 3 0 4 0; #X connect 7 0 1 0; #X connect 9 0 7 0; #X connect 9 0 11 0; #X connect 11 0 2 0; #X connect 14 0 11 0; #X connect 15 0 14 0; #X connect 16 0 14 0;
38
signal conversion
calculates the arithmetic mean of a signal between 2 bangs
create a purr-data patch that matches the following description and keywords.
Description: calculates the arithmetic mean of a signal between 2 bangs, Keywords: signal conversion
rewrap-help.pd
externals\maxlib\rewrap-help.pd
#N canvas 0 26 483 404 12; #X floatatom 27 304 8 0 0 0 - - -; #X floatatom 27 73 5 0 0 0 - - -; #X text 202 47 written by <[email protected]>; #X floatatom 60 133 5 0 0 0 - - -; #X floatatom 94 158 5 0 0 0 - - -; #X text 84 71 input value; #X text 57 102 creation arguments can be changed dynamically:; #X text 35 341 creation arguments:; #X text 115 132 lower limit; #X text 146 157 upper limit; #X floatatom 110 276 5 0 0 0 - - -; #X text 36 358 wrap <lower limit> <upper limit>; #X obj 27 249 rewrap 6 40; #X text 200 27 into a range; #X text 169 275 wrap period; #X text 107 305 output; #X text 122 11 rewrap :: wraps floats back and forth; #N canvas 293 158 494 344 META 0; #X text 12 185 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 165 AUTHOR Olaf Matthes <[email protected]>; #X text 12 45 DESCRIPTION wraps floats back and forth into a range ; #X text 12 5 KEYWORDS control; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X text 12 125 OUTLET_0 float; #X text 12 145 OUTLET_1 float; #X restore 413 364 pd META; #X connect 1 0 12 0; #X connect 3 0 12 1; #X connect 4 0 12 2; #X connect 12 0 0 0; #X connect 12 1 10 0;
#N canvas 0 26 483 404 12; #X floatatom 27 304 8 0 0 0 - - -; #X floatatom 27 73 5 0 0 0 - - -; #X text 202 47 written by <[email protected]>; #X floatatom 60 133 5 0 0 0 - - -; #X floatatom 94 158 5 0 0 0 - - -; #X text 84 71 input value; #X text 57 102 creation arguments can be changed dynamically:; #X text 35 341 creation arguments:; #X text 115 132 lower limit; #X text 146 157 upper limit; #X floatatom 110 276 5 0 0 0 - - -; #X text 36 358 wrap <lower limit> <upper limit>; #X obj 27 249 rewrap 6 40; #X text 200 27 into a range; #X text 169 275 wrap period; #X text 107 305 output; #X text 122 11 rewrap :: wraps floats back and forth; #X connect 1 0 12 0; #X connect 3 0 12 1; #X connect 4 0 12 2; #X connect 12 0 0 0; #X connect 12 1 10 0;
35
control
wraps floats back and forth into a range
create a purr-data patch that matches the following description and keywords.
Description: wraps floats back and forth into a range, Keywords: control
samplerate~-help.pd
pd\doc\5.reference\samplerate~-help.pd
#N canvas 431 34 555 619 10; #X obj 0 595 cnv 15 552 21 empty \$0-pddp.cnv.footer empty 20 12 0 14 -228856 -66577 0; #X obj 0 0 cnv 15 552 40 empty \$0-pddp.cnv.header samplerate~ 3 12 0 18 -204280 -1 0; #X obj 0 431 cnv 3 550 3 empty \$0-pddp.cnv.inlets inlets 8 12 0 13 -228856 -1 0; #N canvas 488 283 494 344 META 0; #X text 12 105 LIBRARY internal; #X text 12 145 WEBSITE http://crca.ucsd.edu/~msp/; #X text 12 25 LICENSE SIBSD; #X text 12 125 AUTHOR Miller Puckette; #X text 12 185 HELP_PATCH_AUTHORS Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION get the current sample rate; #X text 12 65 INLET_0 bang; #X text 12 85 OUTLET_0 float; #X text 12 165 RELEASE_DATE 1997; #X text 12 5 KEYWORDS control; #X restore 500 597 pd META; #X obj 0 473 cnv 3 550 3 empty \$0-pddp.cnv.outlets outlets 8 12 0 13 -228856 -1 0; #X obj 0 511 cnv 3 550 3 empty \$0-pddp.cnv.argument arguments 8 12 0 13 -228856 -1 0; #X obj 0 538 cnv 3 550 3 empty \$0-pddp.cnv.more_info more_info 8 12 0 13 -228856 -1 0; #X text 98 515 (none); #N canvas 222 516 428 109 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -204280 -1 0; #X text 8 2 [samplerate~] Related Objects; #X restore 102 597 pd Related_objects; #X obj 78 440 cnv 17 3 17 empty \$0-pddp.cnv.let.0 0 5 9 0 16 -228856 -162280 0; #X text 98 482 float; #X obj 78 483 cnv 17 3 17 empty \$0-pddp.cnv.let.0 0 5 9 0 16 -228856 -162280 0; #X obj 470 11 samplerate~; #X obj 225 197 samplerate~; #X floatatom 225 240 8 0 0 0 - - -, f 8; #X obj 225 154 bng 30 250 50 0 empty empty empty 0 -6 0 8 -260818 -1 -1; #X text 98 439 bang; #X text 168 439 - when sent a bang message \, [samplerate~] outputs the sample rate that Pd is currently running at.; #X text 99 542 Pd's sample rate can be changed using the command line flag: -r <n>. For example: pd -r 22050; #X text 11 23 get the current sample rate; #X text 99 573 DSP does not need to be turned on for [samplerate~] to work; #X text 168 482 - the sample rate.; #X obj 4 597 pddp/pddplink all_about_help_patches.pd -text Usage Guide ; #X connect 13 0 14 0; #X connect 15 0 13 0;
#N canvas 431 34 555 619 10; #X text 98 515 (none); #X text 98 482 float; #X obj 470 11 samplerate~; #X obj 225 197 samplerate~; #X floatatom 225 240 8 0 0 0 - - -, f 8; #X obj 225 154 bng 30 250 50 0 empty empty empty 0 -6 0 8 -260818 -1 -1; #X text 98 439 bang; #X text 168 439 - when sent a bang message \, [samplerate~] outputs the sample rate that Pd is currently running at.; #X text 99 542 Pd's sample rate can be changed using the command line flag: -r <n>. For example: pd -r 22050; #X text 11 23 get the current sample rate; #X text 99 573 DSP does not need to be turned on for [samplerate~] to work; #X text 168 482 - the sample rate.; #X connect 13 0 14 0; #X connect 15 0 13 0;
40
control
get the current sample rate
create a purr-data patch that matches the following description and keywords.
Description: get the current sample rate, Keywords: control
cconj~-help.pd
externals\creb\doc\cconj~-help.pd
#N canvas 0 26 285 166 10; #X text 49 5 complex conjugate; #N canvas 331 92 494 353 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 105 OUTLET_0 signal; #X text 12 45 DESCRIPTION complex conjugate; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 125 OUTLET_1 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 145 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X restore 236 144 pd META; #X obj 49 55 cconj~;
#N canvas 0 26 285 166 10; #X text 49 5 complex conjugate; #X obj 49 55 cconj~;
14
signal abstraction needs_work (example patch)
complex conjugate
create a purr-data patch that matches the following description and keywords.
Description: complex conjugate, Keywords: signal abstraction needs_work (example patch)
ucnorm~-help.pd
externals\creb\doc\ucnorm~-help.pd
#N canvas 0 0 450 300 10; #X text 59 21 normalize complex number to unit magnitude; #N canvas 200 78 494 353 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 DESCRIPTION normalize complex number to unit magnitude ; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 105 OUTLET_0 signal; #X text 12 125 OUTLET_1 signal; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR Tom Schouten <[email protected]>; #X restore 398 277 pd META; #X obj 183 126 ucnorm~;
#N canvas 0 0 450 300 10; #X text 59 21 normalize complex number to unit magnitude; #X obj 183 126 ucnorm~;
14
signal abstraction needs_work (example patch)
normalize complex number to unit magnitude
create a purr-data patch that matches the following description and keywords.
Description: normalize complex number to unit magnitude, Keywords: signal abstraction needs_work (example patch)
file_type-help.pd
externals\hcs\file_type-help.pd
#N canvas 0 26 422 304 10; #X obj 180 210 file_type; #X obj 181 41 bng 15 250 50 0 empty empty empty 0 -6 0 8 -24198 -1 -1; #X obj 181 59 openpanel; #X msg 203 118 symbol /usr/bin/gcc; #X obj 239 235 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 258 236 bang if no match; #X msg 206 142 symbol /dev/tty; #X obj 181 96 symbol; #X msg 141 76 bang; #X symbolatom 179 262 0 0 0 0 file_type - -; #X obj 207 185 folder_list; #X msg 207 166 symbol /tmp/ssh-*/agent.*; #X msg 83 148 symbol /usr; #X msg 25 129 symbol /tmp; #X text 16 10 find the file type of a file; #N canvas 392 173 494 344 META 0; #X text 12 144 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v3; #X text 12 125 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control symbol_op filesystem; #X text 12 45 DESCRIPTION find the file type of a file; #X text 12 65 INLET_0 symbol; #X text 12 85 OUTLET_0 symbol; #X text 12 105 OUTLET_1 bang; #X restore 372 282 pd META; #X connect 0 0 9 0; #X connect 0 1 4 0; #X connect 1 0 2 0; #X connect 2 0 7 0; #X connect 3 0 0 0; #X connect 6 0 0 0; #X connect 7 0 0 0; #X connect 8 0 7 0; #X connect 10 0 0 0; #X connect 11 0 10 0; #X connect 12 0 0 0; #X connect 13 0 0 0;
#N canvas 0 26 422 304 10; #X obj 180 210 file_type; #X obj 181 41 bng 15 250 50 0 empty empty empty 0 -6 0 8 -24198 -1 -1; #X obj 181 59 openpanel; #X msg 203 118 symbol /usr/bin/gcc; #X obj 239 235 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 258 236 bang if no match; #X msg 206 142 symbol /dev/tty; #X obj 181 96 symbol; #X msg 141 76 bang; #X symbolatom 179 262 0 0 0 0 file_type - -; #X obj 207 185 folder_list; #X msg 207 166 symbol /tmp/ssh-*/agent.*; #X msg 83 148 symbol /usr; #X msg 25 129 symbol /tmp; #X text 16 10 find the file type of a file; #X connect 0 0 9 0; #X connect 0 1 4 0; #X connect 1 0 2 0; #X connect 2 0 7 0; #X connect 3 0 0 0; #X connect 6 0 0 0; #X connect 7 0 0 0; #X connect 8 0 7 0; #X connect 10 0 0 0; #X connect 11 0 10 0; #X connect 12 0 0 0; #X connect 13 0 0 0;
38
control symbol_op filesystem
find the file type of a file
create a purr-data patch that matches the following description and keywords.
Description: find the file type of a file, Keywords: control symbol_op filesystem
strcmp-help.pd
externals\zexy\reference\strcmp-help.pd
#N canvas 0 31 628 559 10; #X obj 90 54 strcmp; #X text 147 54 -- compare 2 lists as if they were strings; #X obj 71 398 strcmp this is list # 3; #X floatatom 71 423 0 0 0 0 - - -; #X obj 96 423 print strcmp; #X msg 71 184 list this is list # 3; #X msg 71 221 list this is list # 4; #X msg 71 239 1 2 3 4 5; #X msg 71 256 list yet another list; #X floatatom 83 286 0 0 0 0 - - -; #X msg 204 313 list yet another list; #X msg 222 366 list \$1; #X floatatom 222 349 0 0 0 0 - - -; #X text 278 357 to compare symbols/floats you have to make sure that they go to the 2nd inlet as lists; #X text 98 442 the output follows the "strcmp" of the C programming language; #X text 426 24 part of zexy; #X text 68 525 probably not very efficient!!; #N canvas 460 154 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR IOhannes m zmoelnig; #X text 12 5 KEYWORDS control list_op; #X text 12 45 DESCRIPTION compare two lists as if they were strings ; #X text 12 65 INLET_0 list float; #X text 12 85 INLET_1 list; #X text 12 105 OUTLET_0 float; #X restore 573 531 pd META; #X connect 2 0 4 0; #X connect 2 0 3 0; #X connect 5 0 2 0; #X connect 6 0 2 0; #X connect 7 0 2 0; #X connect 8 0 2 0; #X connect 9 0 2 0; #X connect 10 0 2 1; #X connect 11 0 2 1; #X connect 12 0 11 0;
#N canvas 0 31 628 559 10; #X obj 90 54 strcmp; #X text 147 54 -- compare 2 lists as if they were strings; #X obj 71 398 strcmp this is list # 3; #X floatatom 71 423 0 0 0 0 - - -; #X obj 96 423 print strcmp; #X msg 71 184 list this is list # 3; #X msg 71 221 list this is list # 4; #X msg 71 239 1 2 3 4 5; #X msg 71 256 list yet another list; #X floatatom 83 286 0 0 0 0 - - -; #X msg 204 313 list yet another list; #X msg 222 366 list \$1; #X floatatom 222 349 0 0 0 0 - - -; #X text 278 357 to compare symbols/floats you have to make sure that they go to the 2nd inlet as lists; #X text 98 442 the output follows the "strcmp" of the C programming language; #X text 426 24 part of zexy; #X text 68 525 probably not very efficient!!; #X connect 2 0 4 0; #X connect 2 0 3 0; #X connect 5 0 2 0; #X connect 6 0 2 0; #X connect 7 0 2 0; #X connect 8 0 2 0; #X connect 9 0 2 0; #X connect 10 0 2 1; #X connect 11 0 2 1; #X connect 12 0 11 0;
38
control list_op
compare two lists as if they were strings
create a purr-data patch that matches the following description and keywords.
Description: compare two lists as if they were strings, Keywords: control list_op
ccmap~-help.pd
externals\creb\doc\ccmap~-help.pd
#N canvas 0 26 450 300 10; #X text 23 10 conformal self map of the unit disk (z-a)/(1-conj(a)z) ; #N canvas 331 92 494 392 META 0; #X text 12 205 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 145 OUTLET_0 signal; #X text 12 45 DESCRIPTION conformal self map of the unit disk; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 105 INLET_2 signal; #X text 12 125 INLET_3 signal; #X text 12 165 OUTLET_1 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 185 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X restore 398 277 pd META; #X obj 24 90 ccmap~;
#N canvas 0 26 450 300 10; #X text 23 10 conformal self map of the unit disk (z-a)/(1-conj(a)z) ; #X obj 24 90 ccmap~;
16
signal abstraction needs_work (example patch)
conformal self map of the unit disk
create a purr-data patch that matches the following description and keywords.
Description: conformal self map of the unit disk, Keywords: signal abstraction needs_work (example patch)
stripdir-help.pd
externals\ggee\control\stripdir-help.pd
#N canvas 0 26 412 258 10; #X obj 22 78 stripdir; #X symbolatom 22 48 0 0 0 0 - - -; #X obj 22 105 print; #X text 20 22 strips all leading directories from a path; #N canvas 129 173 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE Tcl/Tk; #X text 12 105 AUTHOR Guenter Geiger; #X text 12 5 KEYWORDS control symbol_op; #X text 12 45 DESCRIPTION strip all leading directories from a path ; #X text 12 65 INLET_0 symbol; #X text 12 85 OUTLET_0 symbol; #X restore 362 236 pd META; #X connect 0 0 2 0; #X connect 1 0 0 0;
#N canvas 0 26 412 258 10; #X obj 22 78 stripdir; #X symbolatom 22 48 0 0 0 0 - - -; #X obj 22 105 print; #X text 20 22 strips all leading directories from a path; #X connect 0 0 2 0; #X connect 1 0 0 0;
16
control symbol_op
strip all leading directories from a path
create a purr-data patch that matches the following description and keywords.
Description: strip all leading directories from a path, Keywords: control symbol_op
unpackOSCstream-help.pd
externals\mrpeach\osc\unpackOSCstream-help.pd
#N canvas 1 53 638 435 10; #X text 8 369 check also:; #X obj 240 386 tcpreceive; #X obj 183 386 tcpsend; #X obj 318 386 tcpserver; #X obj 389 386 tcpclient; #X text 472 374 Author: Roman Haefeli; #X text 472 390 Version: 2008-09-09; #X text 158 65 [unpackOSCstream] is meant to be a replacement for [unpackOSC] \, when receiving from a stream based protocol \, such as TCP.; #X obj 18 197 unpackOSCstream; #X obj 18 17 tcpreceive 9995; #X obj 18 222 print; #X floatatom 105 221 5 0 0 0 - - -; #X text 159 283 reference:; #X obj 10 386 packOSCstream; #X obj 110 386 unpackOSC; #X text 160 300 http://archive.cnmat.berkeley.edu/OpenSoundControl/OSC-spec.html : Section "OSC Packets"; #X text 141 221 milliseconds delay; #X text 158 119 [unpackOSCstream] will only be able to decode OSC packets or bundles created by [packOSCstream]. OSC packets that were generated by [packOSC] will cause errors or wrong output.; #N canvas 507 340 494 344 META 0; #X text 12 155 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2 or later; #X text 12 5 KEYWORDS control network abstraction; #X text 12 46 DESCRIPTION meant to be a replacement for [unpackOSC] \, when receiving from a stream based protocol \, such as TCP.; #X text 12 75 INLET_0 anything; #X text 12 95 OUTLET_0 anything; #X text 12 115 OUTLET_1 float; #X text 12 135 AUTHOR Roman Haefeli; #X restore 591 413 pd META; #X connect 8 0 10 0; #X connect 8 1 11 0; #X connect 9 0 8 0;
#N canvas 1 53 638 435 10; #X text 8 369 check also:; #X obj 240 386 tcpreceive; #X obj 183 386 tcpsend; #X obj 318 386 tcpserver; #X obj 389 386 tcpclient; #X text 472 374 Author: Roman Haefeli; #X text 472 390 Version: 2008-09-09; #X text 158 65 [unpackOSCstream] is meant to be a replacement for [unpackOSC] \, when receiving from a stream based protocol \, such as TCP.; #X obj 18 197 unpackOSCstream; #X obj 18 17 tcpreceive 9995; #X obj 18 222 print; #X floatatom 105 221 5 0 0 0 - - -; #X text 159 283 reference:; #X obj 10 386 packOSCstream; #X obj 110 386 unpackOSC; #X text 160 300 http://archive.cnmat.berkeley.edu/OpenSoundControl/OSC-spec.html : Section "OSC Packets"; #X text 141 221 milliseconds delay; #X text 158 119 [unpackOSCstream] will only be able to decode OSC packets or bundles created by [packOSCstream]. OSC packets that were generated by [packOSC] will cause errors or wrong output.; #X connect 8 0 10 0; #X connect 8 1 11 0; #X connect 9 0 8 0;
32
control network abstraction
meant to be a replacement for [unpackOSC] \, when receiving from a stream based protocol \, such as TCP.
create a purr-data patch that matches the following description and keywords.
Description: meant to be a replacement for [unpackOSC] \, when receiving from a stream based protocol \, such as TCP., Keywords: control network abstraction
4.fonts.pd
pd\doc\manuals\pd-msg\1.msg_and_patch\4.fonts.pd
#N canvas 295 201 405 234 10; #X msg 14 26 menufont; #X msg 32 64 font 10 100 100; #X msg 32 88 font 14 100 100; #X msg 30 114 font 24 100 100; #X msg 158 86 50; #X msg 198 86 200; #X msg 158 112 font 10 100 \$1; #X msg 274 84 50; #X msg 314 84 200; #X msg 274 112 font 10 \$1 100; #X obj 14 196 s pd-4.fonts.pd; #X text 14 3 Here a list of all the messages dealing with fonts :; #N canvas 458 158 494 396 META 0; #X text 12 95 HELP_PATCH_AUTHORS Damien Henry. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 64 DESCRIPTION changing font size with messages to a canvas ; #X text 12 43 LICENSE public domain; #X text 12 5 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial ; #X restore 347 206 pd META; #X connect 0 0 10 0; #X connect 1 0 10 0; #X connect 2 0 10 0; #X connect 3 0 10 0; #X connect 4 0 6 0; #X connect 5 0 6 0; #X connect 6 0 10 0; #X connect 7 0 9 0; #X connect 8 0 9 0; #X connect 9 0 10 0;
#N canvas 295 201 405 234 10; #X msg 14 26 menufont; #X msg 32 64 font 10 100 100; #X msg 32 88 font 14 100 100; #X msg 30 114 font 24 100 100; #X msg 158 86 50; #X msg 198 86 200; #X msg 158 112 font 10 100 \$1; #X msg 274 84 50; #X msg 314 84 200; #X msg 274 112 font 10 \$1 100; #X obj 14 196 s pd-4.fonts.pd; #X text 14 3 Here a list of all the messages dealing with fonts :; #X connect 0 0 10 0; #X connect 1 0 10 0; #X connect 2 0 10 0; #X connect 3 0 10 0; #X connect 4 0 6 0; #X connect 5 0 6 0; #X connect 6 0 10 0; #X connect 7 0 9 0; #X connect 8 0 9 0; #X connect 9 0 10 0;
29
control canvas_op nonlocal dynamic_patching tutorial
changing font size with messages to a canvas
create a purr-data patch that matches the following description and keywords.
Description: changing font size with messages to a canvas, Keywords: control canvas_op nonlocal dynamic_patching tutorial
notch-help.pd
externals\ggee\filters\notch-help.pd
#N canvas 0 26 422 415 10; #X text 63 298 These filters are all controlled by a bandwidth which is expressed in octaves. A bandwidth of 100 is equivalent to one octave. ; #X text 70 26 ===================================; #X text 63 340 Attention \, only the left inlet triggers new coefficients for biquad~; #X text 8 388 (C) Guenter Geiger 2000; #X floatatom 176 119 0 0 0 0 - - -; #X floatatom 267 119 0 0 0 0 - - -; #X obj 267 142 trigger bang float; #X obj 113 216 biquad~; #X obj 113 156 noise~; #X obj 179 74 hsl 128 17 20 20000 1 1 empty empty frequency 5 9 0 10 -203904 -1 -1 8800 0; #X obj 270 97 hsl 128 17 0 300 0 1 empty empty bandwidth 5 9 0 10 -261682 -1 -1 12700 0; #X obj 104 276 dac~; #X obj 113 244 *~ 0.1; #X text 76 12 Notch coefficients for biquad~; #X obj 176 185 notch; #N canvas 232 266 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE Tcl/Tk; #X text 12 125 AUTHOR Guenter Geiger; #X text 12 5 KEYWORDS control; #X text 12 45 DESCRIPTION notch coefficients for biquad~; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 list; #X restore 372 395 pd META; #X connect 4 0 14 0; #X connect 5 0 6 0; #X connect 6 0 14 0; #X connect 6 1 14 1; #X connect 7 0 12 0; #X connect 8 0 7 0; #X connect 9 0 4 0; #X connect 10 0 5 0; #X connect 12 0 11 0; #X connect 12 0 11 1; #X connect 14 0 7 0;
#N canvas 0 26 422 415 10; #X text 63 298 These filters are all controlled by a bandwidth which is expressed in octaves. A bandwidth of 100 is equivalent to one octave. ; #X text 70 26 ===================================; #X text 63 340 Attention \, only the left inlet triggers new coefficients for biquad~; #X text 8 388 (C) Guenter Geiger 2000; #X floatatom 176 119 0 0 0 0 - - -; #X floatatom 267 119 0 0 0 0 - - -; #X obj 267 142 trigger bang float; #X obj 113 216 biquad~; #X obj 113 156 noise~; #X obj 179 74 hsl 128 17 20 20000 1 1 empty empty frequency 5 9 0 10 -203904 -1 -1 8800 0; #X obj 270 97 hsl 128 17 0 300 0 1 empty empty bandwidth 5 9 0 10 -261682 -1 -1 12700 0; #X obj 104 276 dac~; #X obj 113 244 *~ 0.1; #X text 76 12 Notch coefficients for biquad~; #X obj 176 185 notch; #X connect 4 0 14 0; #X connect 5 0 6 0; #X connect 6 0 14 0; #X connect 6 1 14 1; #X connect 7 0 12 0; #X connect 8 0 7 0; #X connect 9 0 4 0; #X connect 10 0 5 0; #X connect 12 0 11 0; #X connect 12 0 11 1; #X connect 14 0 7 0;
37
control
notch coefficients for biquad~
create a purr-data patch that matches the following description and keywords.
Description: notch coefficients for biquad~, Keywords: control
hid_smooth-help.pd
externals\hid\hid_smooth-help.pd
#N canvas 0 31 475 392 10; #X text 27 340 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 244 354 released under the GNU GPL; #X floatatom 102 195 5 0 0 0 - - -; #X floatatom 102 251 5 0 0 0 - - -; #X text 98 303 For more info:; #X obj 102 131 noise4hidhelp; #X obj 105 273 hsl 250 15 0 1 0 0 empty empty empty 22 8 1 12 -262144 -1 -1 0 1; #X obj 105 164 hsl 250 15 0 1 0 0 empty empty empty 22 8 1 12 -262144 -1 -1 0 1; #X obj 5 2 cnv 15 450 20 empty empty hid_smooth 2 11 1 18 -233017 -66577 0; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 102 221 hid/hid_smooth; #X text 18 36 Smooths a stream of numbers using weighted averaging of the last 10 values. This object is an shortcut for [hid_average] with the default settings.; #X obj 102 94 tgl 30 0 empty empty start 1 15 1 12 -90049 -1 -1 0 1 ; #N canvas 485 31 494 344 META 0; #X text 12 135 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL; #X text 12 115 AUTHOR Hans-Christoph Steiner; #X text 12 95 OUTLET_0 float; #X text 12 45 DESCRIPTION smooth a stream of numbers using weighted averaging of the last 10 values; #X text 12 75 INLET_0 float; #X text 12 5 KEYWORDS control filter abstraction; #X restore 422 361 pd META; #X connect 2 0 10 0; #X connect 3 0 6 0; #X connect 5 0 7 0; #X connect 7 0 2 0; #X connect 10 0 3 0; #X connect 12 0 5 0;
#N canvas 0 31 475 392 10; #X text 27 340 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 244 354 released under the GNU GPL; #X floatatom 102 195 5 0 0 0 - - -; #X floatatom 102 251 5 0 0 0 - - -; #X text 98 303 For more info:; #X obj 102 131 noise4hidhelp; #X obj 105 273 hsl 250 15 0 1 0 0 empty empty empty 22 8 1 12 -262144 -1 -1 0 1; #X obj 105 164 hsl 250 15 0 1 0 0 empty empty empty 22 8 1 12 -262144 -1 -1 0 1; #X obj 102 221 hid/hid_smooth; #X text 18 36 Smooths a stream of numbers using weighted averaging of the last 10 values. This object is an shortcut for [hid_average] with the default settings.; #X obj 102 94 tgl 30 0 empty empty start 1 15 1 12 -90049 -1 -1 0 1 ; #X connect 2 0 10 0; #X connect 3 0 6 0; #X connect 5 0 7 0; #X connect 7 0 2 0; #X connect 10 0 3 0; #X connect 12 0 5 0;
29
control filter abstraction
smooth a stream of numbers using weighted averaging of the last 10 values
create a purr-data patch that matches the following description and keywords.
Description: smooth a stream of numbers using weighted averaging of the last 10 values, Keywords: control filter abstraction
metroplus-help.pd
externals\mjlib\metroplus-help.pd
#N canvas 1 53 632 505 12; #X obj 166 441 bng 15 250 50 0 empty empty empty 20 8 0 8 -262144 -1 -1; #X msg 170 249 start; #X msg 123 351 stop; #X floatatom 460 286 5 0 0 0 - - -; #X obj 173 393 metroplus 1000 500 1000 200; #X msg 269 309 500 1000 200; #X text 28 13 metroplus; #X text 27 32 by mark williamson ([email protected]); #X obj 182 279 bng 15 250 50 0 empty empty empty 20 8 0 8 -262144 -1 -1; #X text 27 65 metroplus is a variation on the metro object. Instead of providing a steady pulse however it can provide an irregular beat. It takes as its control a list of numbers representing intervals in milliseconds. These are the time between each "pulse". So for example with the initial setting below (in the metroplus object itself) - the first pulse comes after 1 second the second after 500ms the third after 1 second and the fourth after 200ms - the next beat comming a second after that because the sequence starts again.; #X text 19 243 start with; #X text 18 257 a start message; #X text 18 274 or a 'bang'---->; #X text 12 321 stop with a; #X text 11 338 stop; #X text 13 352 message--->; #X text 245 286 set a new sequence; #X text 457 322 it still works; #X text 455 338 like a metro; #X text 428 355 object if you want; #X text 518 372 it to; #N canvas 277 222 494 344 META 0; #X text 12 155 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 135 AUTHOR Mark Williamson <[email protected]>; #X text 12 25 LICENSE GPL v2; #X text 12 45 DESCRIPTION variation on the metro object -- instead of providing a steady pulse it can provide an irregular beat; #X text 12 75 INLET_0 bang start stop; #X text 12 95 INLET_1 float list; #X text 12 115 OUTLET_0 bang; #X text 12 5 KEYWORDS control bang_op; #X restore 508 455 pd META; #X connect 1 0 4 0; #X connect 2 0 4 0; #X connect 3 0 4 1; #X connect 4 0 0 0; #X connect 5 0 4 1; #X connect 8 0 4 0;
#N canvas 1 53 632 505 12; #X obj 166 441 bng 15 250 50 0 empty empty empty 20 8 0 8 -262144 -1 -1; #X msg 170 249 start; #X msg 123 351 stop; #X floatatom 460 286 5 0 0 0 - - -; #X obj 173 393 metroplus 1000 500 1000 200; #X msg 269 309 500 1000 200; #X text 28 13 metroplus; #X text 27 32 by mark williamson ([email protected]); #X obj 182 279 bng 15 250 50 0 empty empty empty 20 8 0 8 -262144 -1 -1; #X text 27 65 metroplus is a variation on the metro object. Instead of providing a steady pulse however it can provide an irregular beat. It takes as its control a list of numbers representing intervals in milliseconds. These are the time between each "pulse". So for example with the initial setting below (in the metroplus object itself) - the first pulse comes after 1 second the second after 500ms the third after 1 second and the fourth after 200ms - the next beat comming a second after that because the sequence starts again.; #X text 19 243 start with; #X text 18 257 a start message; #X text 18 274 or a 'bang'---->; #X text 12 321 stop with a; #X text 11 338 stop; #X text 13 352 message--->; #X text 245 286 set a new sequence; #X text 457 322 it still works; #X text 455 338 like a metro; #X text 428 355 object if you want; #X text 518 372 it to; #X connect 1 0 4 0; #X connect 2 0 4 0; #X connect 3 0 4 1; #X connect 4 0 0 0; #X connect 5 0 4 1; #X connect 8 0 4 0;
38
control bang_op
variation on the metro object -- instead of providing a steady pulse it can provide an irregular beat
create a purr-data patch that matches the following description and keywords.
Description: variation on the metro object -- instead of providing a steady pulse it can provide an irregular beat, Keywords: control bang_op
split-help.pd
externals\maxlib\split-help.pd
#N canvas 0 26 514 431 12; #X floatatom 27 304 8 0 0 0 - - -; #X floatatom 27 73 5 0 0 0 - - -; #X text 196 28 written by <[email protected]>; #X floatatom 56 131 5 0 0 0 - - -; #X floatatom 85 152 5 0 0 0 - - -; #X text 84 71 input value; #X text 57 104 creation arguments can be changed dynamically:; #X text 35 341 creation arguments:; #X obj 27 249 split 6 40; #X text 111 130 lower limit; #X text 137 151 upper limit; #X text 35 378 All floats that fall below the lower limit or above the upper limit get routed to the 2nd outlet.; #X text 36 358 split <lower limit> <upper limit>; #X floatatom 102 276 5 0 0 0 - - -; #X text 154 276 floats 'out of range'; #X text 122 11 split :: split incoming floats according to value; #X text 106 305 floats 'in range' (including borders!); #N canvas 292 198 494 344 META 0; #X text 12 190 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 170 AUTHOR Olaf Matthes <[email protected]>; #X text 12 90 INLET_1 float; #X text 12 5 KEYWORDS control filter anything_op; #X text 12 45 DESCRIPTION split incoming floats according to value ; #X text 12 70 INLET_0 float; #X text 12 110 INLET_2 float; #X text 12 130 OUTLET_0 float; #X text 12 150 OUTLET_1 float; #X restore 453 402 pd META; #X connect 1 0 8 0; #X connect 3 0 8 1; #X connect 4 0 8 2; #X connect 8 0 0 0; #X connect 8 1 13 0;
#N canvas 0 26 514 431 12; #X floatatom 27 304 8 0 0 0 - - -; #X floatatom 27 73 5 0 0 0 - - -; #X text 196 28 written by <[email protected]>; #X floatatom 56 131 5 0 0 0 - - -; #X floatatom 85 152 5 0 0 0 - - -; #X text 84 71 input value; #X text 57 104 creation arguments can be changed dynamically:; #X text 35 341 creation arguments:; #X obj 27 249 split 6 40; #X text 111 130 lower limit; #X text 137 151 upper limit; #X text 35 378 All floats that fall below the lower limit or above the upper limit get routed to the 2nd outlet.; #X text 36 358 split <lower limit> <upper limit>; #X floatatom 102 276 5 0 0 0 - - -; #X text 154 276 floats 'out of range'; #X text 122 11 split :: split incoming floats according to value; #X text 106 305 floats 'in range' (including borders!); #X connect 1 0 8 0; #X connect 3 0 8 1; #X connect 4 0 8 2; #X connect 8 0 0 0; #X connect 8 1 13 0;
35
control filter anything_op
split incoming floats according to value
create a purr-data patch that matches the following description and keywords.
Description: split incoming floats according to value, Keywords: control filter anything_op
debug-help.pd
externals\hcs\debug-help.pd
#N canvas 0 31 450 300 10; #X obj 148 137 debug testing; #X text 31 46 a simple object to control the flow of print messages \, and label them.; #N canvas 329 160 494 344 META 0; #X text 12 105 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v3; #X text 12 85 AUTHOR Hans-Christoph Steiner; #X text 12 45 DESCRIPTION debounce; #X text 12 65 INLET_0 anything; #X text 12 5 KEYWORDS control; #X restore 388 268 pd META;
#N canvas 0 31 450 300 10; #X obj 148 137 debug testing; #X text 31 46 a simple object to control the flow of print messages \, and label them.;
11
control
debounce
create a purr-data patch that matches the following description and keywords.
Description: debounce, Keywords: control
09.ellipse.pd
packages\win64_inno\build\doc\4.data.structures\pd-l2ork\ds-tutorials\09.ellipse.pd
#N struct drawtut-ellipse float x float y; #N canvas 1 25 509 498 10; #X msg 141 117 stroke blue; #X msg 54 117 fill yellow; #X msg 228 117 stroke-width \$1; #X floatatom 228 93 5 0 0 0 - - -, f 5; #X text 259 246 <- an ellipse; #X text 0 1 New Drawing Commands: ellipse; #X text 0 1 _____________________________; #X text 53 23 An ellipse.; #X obj 53 57 struct drawtut-ellipse float x float y; #X scalar drawtut-ellipse 155 253 \;; #X text 52 384 Like a circle \, the coordinate (0 \, 0) specifies the center of the shape \, but you can easily figure out the top-left corner of its bounding-box by offsetting its coordinates by the x and y radius values \, respectively. (So the one above would be [draw ellipse 86 42 86 42].); #X obj 53 153 draw ellipse 86 42 0 0; #X text 52 334 The [draw] object above creates an ellipse with an x-radius of 86 and a y-radius of 42 \, centered at (0 \, 0).; #N canvas 291 300 450 300 META 0; #X text 16 26 LICENSE SIBSD; #X text 16 66 AUTHOR Jonathan Wilkes; #X text 16 86 HELP_PATCH_AUTHORS Jonathan Wilkes; #X text 16 6 KEYWORDS tutorial data_structure draw gui; #X text 16 46 DESCRIPTION drawing an ellipse with the [draw] command ; #X restore 445 465 pd META; #X connect 0 0 11 0; #X connect 1 0 11 0; #X connect 2 0 11 0; #X connect 3 0 2 0;
#N struct drawtut-ellipse float x float y; #N canvas 1 25 509 498 10; #X msg 141 117 stroke blue; #X msg 54 117 fill yellow; #X msg 228 117 stroke-width \$1; #X floatatom 228 93 5 0 0 0 - - -, f 5; #X text 259 246 <- an ellipse; #X text 0 1 New Drawing Commands: ellipse; #X text 0 1 _____________________________; #X text 53 23 An ellipse.; #X obj 53 57 struct drawtut-ellipse float x float y; #X scalar drawtut-ellipse 155 253 \;; #X text 52 384 Like a circle \, the coordinate (0 \, 0) specifies the center of the shape \, but you can easily figure out the top-left corner of its bounding-box by offsetting its coordinates by the x and y radius values \, respectively. (So the one above would be [draw ellipse 86 42 86 42].); #X obj 53 153 draw ellipse 86 42 0 0; #X text 52 334 The [draw] object above creates an ellipse with an x-radius of 86 and a y-radius of 42 \, centered at (0 \, 0).; #X connect 0 0 11 0; #X connect 1 0 11 0; #X connect 2 0 11 0; #X connect 3 0 2 0;
26
tutorial data_structure draw gui
drawing an ellipse with the [draw] command
create a purr-data patch that matches the following description and keywords.
Description: drawing an ellipse with the [draw] command, Keywords: tutorial data_structure draw gui
lifop-help.pd
externals\zexy\reference\lifop-help.pd
#N canvas 0 31 568 508 10; #X text 471 31 part of; #X text 533 30 zexy; #X obj 58 192 lifop; #X msg 58 85 1 2 3 4 5; #X msg 69 110 list a list; #X msg 81 137 5; #X msg 199 107 bang; #X floatatom 200 143 5 0 0 1 priority - -; #X text 45 61 input lists; #X text 247 90 bang to output the last list that came in \; bang again to output the second last list \; and so on; #X obj 58 223 print LIFO; #X text 47 18 lifop:: Last-In-First-Out stack with Priorities; #X text 54 263 [lifop] manages a number of LIFO-stacks \; each stack has assigned a priority value \; the lower the value \, the higher the priority; #X text 52 312 banging the object will first empty the LIFO with the highest priority \, then the LIFO with the second highest priority until the LIFO with the lowest priority is emptied.; #X text 52 363 when all LIFOs are emptied \, nothing will come out of the object any more.; #X text 50 400 priorities can be floating-point numbers (1.8 has a higher priority then 10); #X text 52 445 note: you can store any number of lists into the [fifop] \, but just pushing lists on the stack without popping them back will eat your memory.; #X msg 200 167 info; #X obj 112 203 print info; #X text 247 168 query the number of arguments in the LIFO; #N canvas 515 193 494 344 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR IOhannes m zmoelnig; #X text 12 45 DESCRIPTION last in first out stack with priorities; #X text 12 5 KEYWORDS control storage list_op; #X text 12 65 INLET_0 list float bang info; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 list; #X text 12 125 OUTLET_1 float; #X restore 513 481 pd META; #X connect 2 0 10 0; #X connect 2 1 18 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; #X connect 7 0 2 1; #X connect 17 0 2 0;
#N canvas 0 31 568 508 10; #X text 471 31 part of; #X text 533 30 zexy; #X obj 58 192 lifop; #X msg 58 85 1 2 3 4 5; #X msg 69 110 list a list; #X msg 81 137 5; #X msg 199 107 bang; #X floatatom 200 143 5 0 0 1 priority - -; #X text 45 61 input lists; #X text 247 90 bang to output the last list that came in \; bang again to output the second last list \; and so on; #X obj 58 223 print LIFO; #X text 47 18 lifop:: Last-In-First-Out stack with Priorities; #X text 54 263 [lifop] manages a number of LIFO-stacks \; each stack has assigned a priority value \; the lower the value \, the higher the priority; #X text 52 312 banging the object will first empty the LIFO with the highest priority \, then the LIFO with the second highest priority until the LIFO with the lowest priority is emptied.; #X text 52 363 when all LIFOs are emptied \, nothing will come out of the object any more.; #X text 50 400 priorities can be floating-point numbers (1.8 has a higher priority then 10); #X text 52 445 note: you can store any number of lists into the [fifop] \, but just pushing lists on the stack without popping them back will eat your memory.; #X msg 200 167 info; #X obj 112 203 print info; #X text 247 168 query the number of arguments in the LIFO; #X connect 2 0 10 0; #X connect 2 1 18 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; #X connect 7 0 2 1; #X connect 17 0 2 0;
40
control storage list_op
last in first out stack with priorities
create a purr-data patch that matches the following description and keywords.
Description: last in first out stack with priorities, Keywords: control storage list_op
cconj~-help.pd
externals\creb\doc\cconj~-help.pd
#N canvas 0 26 285 166 10; #X text 49 5 complex conjugate; #N canvas 331 92 494 353 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 105 OUTLET_0 signal; #X text 12 45 DESCRIPTION complex conjugate; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 125 OUTLET_1 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 145 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X restore 236 144 pd META; #X obj 49 55 cconj~;
#N canvas 0 26 285 166 10; #X text 49 5 complex conjugate; #X obj 49 55 cconj~;
14
signal abstraction needs_work (example patch)
complex conjugate
create a purr-data patch that matches the following description and keywords.
Description: complex conjugate, Keywords: signal abstraction needs_work (example patch)
ds-color-sel-help.pd
abstractions\jmmmp\ds-color-sel-help.pd
#N struct 1036-color float x float y float farbe float ynpos; #N struct 1508-color float x float y float farbe; #N struct 1508-color-display float x float y float farbe; #N canvas 369 163 531 325 10; #N canvas 0 0 426 446 license 0; #X text 8 47 All rights reserved.; #X text 8 227 The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission.; #X text 8 87 Redistribution and use in source and binary forms \, with or without modification \, are permitted provided that the following conditions are met:; #X text 8 127 Redistributions of source code must retain the above copyright notice \, this list of conditions and the following disclaimer. ; #X text 8 297 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES \, INCLUDING \, BUT NOT LIMITED TO \, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT \, INDIRECT \, INCIDENTAL \, SPECIAL \, EXEMPLARY \, OR CONSEQUENTIAL DAMAGES (INCLUDING \, BUT NOT LIMITED TO \, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; #X text 8 167 Redistributions in binary form must reproduce the above copyright notice \, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. ; #X text 8 27 [email protected]; #X text 8 7 Copyright 2006 \, Jo�o Pais; #X restore 16 299 pd license; #X text 13 281 (C) 2013 Jo�o Pais - [email protected]; #X text 11 11 [ds-color-sel] - color selector for data structures; #X text 13 221 Arguments; #X text 113 221 Inlets; #X text 203 221 Outlets; #X text 203 242 - selected color number; #X text 13 241 (none); #X text 113 241 (none); #X floatatom 14 164 5 0 0 0 - - -; #X obj 137 191 pd-colors; #X obj 14 89 ds-color-sel; #X text 13 191 Also take a look at; #X text 201 191 for the color pallettes in Pure Data.; #X text 12 39 Click in one of the colors or change the number box. You'll get the color number displayed and as output. Connect it to your patch.; #N canvas 504 106 494 344 META 0; #X text 12 55 AUTHOR Jo�o Pais <[email protected]>; #X text 12 95 LICENSE BSD; #X text 12 75 LIBRARY jmmmp; #X text 13 115 WEBSITE http://puredata.info/Members/jmmmp; #X text 12 36 KEYWORDS color tcl/tk data structures; #X text 12 6 DESCRIPTION color selector for data structures; #X text 12 135 VERSION 2013; #X restore 106 299 pd META; #X connect 11 0 9 0;
#N struct 1036-color float x float y float farbe float ynpos; #N struct 1508-color float x float y float farbe; #N struct 1508-color-display float x float y float farbe; #N canvas 369 163 531 325 10; #X text 13 281 (C) 2013 Jo�o Pais - [email protected]; #X text 11 11 [ds-color-sel] - color selector for data structures; #X text 13 221 Arguments; #X text 113 221 Inlets; #X text 203 221 Outlets; #X text 203 242 - selected color number; #X text 13 241 (none); #X text 113 241 (none); #X floatatom 14 164 5 0 0 0 - - -; #X obj 137 191 pd-colors; #X obj 14 89 ds-color-sel; #X text 13 191 Also take a look at; #X text 201 191 for the color pallettes in Pure Data.; #X text 12 39 Click in one of the colors or change the number box. You'll get the color number displayed and as output. Connect it to your patch.; #X connect 11 0 9 0;
38
color tcl/tk data structures
color selector for data structures
create a purr-data patch that matches the following description and keywords.
Description: color selector for data structures, Keywords: color tcl/tk data structures
3.1.motion.pd
packages\win64_inno\build\doc\manuals\pd-msg\1.msg_and_patch\3.1.motion.pd
#N canvas 300 68 415 490 10; #N canvas 425 18 332 294 testing 1; #X obj 95 11 loadbang; #X msg 95 36 0; #X obj 12 37 random 127; #X floatatom 66 94 0 0 0 0 - - -; #X msg 12 11 bang; #X connect 0 0 1 0; #X connect 1 0 3 0; #X connect 2 0 3 0; #X connect 4 0 2 0; #X restore 119 439 pd testing; #X obj 20 438 s pd-testing; #X obj 89 247 pack f f; #X text 8 54 Start here; #X floatatom 120 185 0 0 0 0 - - -; #X floatatom 89 186 0 0 0 0 - - -; #X obj 100 219 t b f; #X text 7 363 Stop here; #X text 85 154 try this !!!; #X text 9 9 This example will show you how to use the motion msg.; #X msg 89 271 motion \$1 \$2 0; #X msg 20 390 motion 15 15 0 \, editmode 0 \, vis 0; #X msg 20 75 vis 1 \, editmode 1 \, mouse 5 5 0 0 0 \, mouseup 200 200 0; #X msg 20 101 mouse 15 15 0 0 0; #N canvas 458 158 494 396 META 0; #X text 12 85 HELP_PATCH_AUTHORS Damien Henry. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 55 DESCRIPTION simulating mouse motion with messages to a canvas; #X text 12 32 LICENSE public domain; #X text 12 5 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial ; #X restore 364 466 pd META; #X connect 2 0 10 0; #X connect 4 0 6 0; #X connect 5 0 2 0; #X connect 6 0 2 0; #X connect 6 1 2 1; #X connect 10 0 1 0; #X connect 11 0 1 0; #X connect 12 0 1 0; #X connect 13 0 1 0;
#N canvas 300 68 415 490 10; #X obj 20 438 s pd-testing; #X obj 89 247 pack f f; #X text 8 54 Start here; #X floatatom 120 185 0 0 0 0 - - -; #X floatatom 89 186 0 0 0 0 - - -; #X obj 100 219 t b f; #X text 7 363 Stop here; #X text 85 154 try this !!!; #X text 9 9 This example will show you how to use the motion msg.; #X msg 89 271 motion \$1 \$2 0; #X msg 20 390 motion 15 15 0 \, editmode 0 \, vis 0; #X msg 20 75 vis 1 \, editmode 1 \, mouse 5 5 0 0 0 \, mouseup 200 200 0; #X msg 20 101 mouse 15 15 0 0 0; #X connect 2 0 10 0; #X connect 4 0 6 0; #X connect 5 0 2 0; #X connect 6 0 2 0; #X connect 6 1 2 1; #X connect 10 0 1 0; #X connect 11 0 1 0; #X connect 12 0 1 0; #X connect 13 0 1 0;
40
control canvas_op nonlocal dynamic_patching tutorial
simulating mouse motion with messages to a canvas
create a purr-data patch that matches the following description and keywords.
Description: simulating mouse motion with messages to a canvas, Keywords: control canvas_op nonlocal dynamic_patching tutorial
cadd~-help.pd
externals\creb\doc\cadd~-help.pd
#N canvas 0 0 450 300 10; #N canvas 331 92 494 398 META 0; #X text 12 205 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 DESCRIPTION complex addition; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 105 INLET_2 signal; #X text 12 125 INLET_3 signal; #X text 12 145 OUTLET_0 signal; #X text 12 165 OUTLET_1 signal; #X text 12 185 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X text 12 5 KEYWORDS signal needs_work (example); #X restore 398 277 pd META; #X obj 105 52 cadd~; #X text 150 50 complex addition;
#N canvas 0 0 450 300 10; #X obj 105 52 cadd~; #X text 150 50 complex addition;
16
signal needs_work (example)
complex addition
create a purr-data patch that matches the following description and keywords.
Description: complex addition, Keywords: signal needs_work (example)
tabreadl-help.pd
externals\moonlib\tabreadl-help.pd
#N canvas 0 31 650 395 10; #X obj 10 11 tabreadl; #X text 22 332 (c) Antoine Rousseau 2004; #X floatatom 15 173 0 0 0 0 - - -; #X floatatom 15 278 0 0 0 0 - - -; #N canvas 0 0 450 300 (subpatch) 0; #X array \$0-array 10 float 0; #X coords 0 0 10 10 250 200 1; #X restore 362 139 graph; #X text 60 276 output = array99[index]; #X text 34 50 click here to initialize; #X text 159 236 creation argument; #X text 155 254 gives array name; #X text 137 204 change array name; #X msg 25 204 set \$0-array99; #X msg 33 65 resize 10 \, bounds 0 0 10 10 \, xlabel -0.5 0 1 2 3 4 5 6 7 8 9 10 \, ylabel -1 0 1 2 3 4 5 6 7 8 9 10 \, 0 1 4 2 8 5 6 1 4 2 8; #X obj 34 139 s \$0-array; #X text 110 8 - linear interpolating read from a table; #X text 46 174 index(float); #X obj 15 245 tabreadl \$0-array; #N canvas 502 150 494 344 META 0; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Antoine Rousseau; #X text 12 125 HELP_PATCH_AUTHORS Antoine Rousseau. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 85 OUTLET_0 float; #X text 12 45 DESCRIPTION linear interpolating read from a table; #X text 12 5 KEYWORDS control array; #X text 12 65 INLET_0 float set; #X restore 592 367 pd META; #X connect 2 0 15 0; #X connect 10 0 15 0; #X connect 11 0 12 0; #X connect 15 0 3 0;
#N canvas 0 31 650 395 10; #X obj 10 11 tabreadl; #X text 22 332 (c) Antoine Rousseau 2004; #X floatatom 15 173 0 0 0 0 - - -; #X floatatom 15 278 0 0 0 0 - - -;
33
control array
linear interpolating read from a table
create a purr-data patch that matches the following description and keywords.
Description: linear interpolating read from a table, Keywords: control array
make-audio-dialog-help.pd
externals\hcs\make-audio-dialog-help.pd
#N canvas 0 26 432 293 10; #X msg 59 115 bang; #X msg 59 203 \; pd audio-dialog 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 44100 50 0; #X obj 59 176 make-audio-dialog; #X text 40 23 [make-audio-dialog] takes the audio-dialog message from [get-audio-dialog] and generates a clickable message box that will set the audio settings. This message box is also suitable for use with a [loadbang]; #N canvas 280 175 494 344 META 0; #X text 12 135 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v3; #X text 12 115 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION take the audio-dialog message from [get-audio-dialog] and generate a clickable message box; #X text 12 75 INLET_0 anything; #X text 12 95 OUTLET_0 anything; #X restore 382 272 pd META; #X obj 59 147 get-audio-dialog; #X connect 0 0 5 0; #X connect 2 0 1 0; #X connect 5 0 2 0;
#N canvas 0 26 432 293 10; #X msg 59 115 bang; #X msg 59 203 \; pd audio-dialog 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 44100 50 0; #X obj 59 176 make-audio-dialog; #X text 40 23 [make-audio-dialog] takes the audio-dialog message from [get-audio-dialog] and generates a clickable message box that will set the audio settings. This message box is also suitable for use with a [loadbang]; #X obj 59 147 get-audio-dialog; #X connect 0 0 5 0; #X connect 2 0 1 0; #X connect 5 0 2 0;
18
control abstraction
take the audio-dialog message from [get-audio-dialog] and generate a clickable message box
create a purr-data patch that matches the following description and keywords.
Description: take the audio-dialog message from [get-audio-dialog] and generate a clickable message box, Keywords: control abstraction
bytemask-help.pd
externals\mapping\bytemask-help.pd
#N canvas 2 82 462 312 10; #X obj 156 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 173 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 190 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 207 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 224 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 241 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 258 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 275 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X floatatom 195 171 5 0 0 0 - - -; #X text 108 34 generate a bitmask byte from 8 inlets; #X text 204 247 set also: [debytemask]; #X obj 195 135 bytemask; #N canvas 464 140 494 344 META 0; #X text 12 265 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 85 INLET_1 float; #X text 12 225 OUTLET_0 float; #X text 12 245 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 65 INLET_0 float; #X text 12 45 DESCRIPTION generate a bitmask byte from 8 inlets; #X text 12 105 INLET_2 float; #X text 12 125 INLET_3 float; #X text 12 145 INLET_4 float; #X text 12 165 INLET_5 float; #X text 12 185 INLET_6 float; #X text 12 205 INLET_7 float; #X text 12 5 KEYWORDS control abstraction; #X restore 407 284 pd META; #X connect 0 0 11 0; #X connect 1 0 11 1; #X connect 2 0 11 2; #X connect 3 0 11 3; #X connect 4 0 11 4; #X connect 5 0 11 5; #X connect 6 0 11 6; #X connect 7 0 11 7; #X connect 11 0 8 0;
#N canvas 2 82 462 312 10; #X obj 156 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 173 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 190 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 207 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 224 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 241 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 258 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 275 94 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X floatatom 195 171 5 0 0 0 - - -; #X text 108 34 generate a bitmask byte from 8 inlets; #X text 204 247 set also: [debytemask]; #X obj 195 135 bytemask; #X connect 0 0 11 0; #X connect 1 0 11 1; #X connect 2 0 11 2; #X connect 3 0 11 3; #X connect 4 0 11 4; #X connect 5 0 11 5; #X connect 6 0 11 6; #X connect 7 0 11 7; #X connect 11 0 8 0;
38
control abstraction
generate a bitmask byte from 8 inlets
create a purr-data patch that matches the following description and keywords.
Description: generate a bitmask byte from 8 inlets, Keywords: control abstraction
unpack-help.pd
externals\zexy\reference\unpack-help.pd
#N canvas 0 31 618 378 10; #X text 511 26 part of zexy; #X text 68 98 an atom can be intialized as a number \, then become a symbol \, later become a number again \, ....; #X obj 121 268 zexy/unpack; #X msg 121 192 1 2; #X msg 158 243 bang; #X obj 48 34 unpack; #X text 102 38 - split a message to atoms; #X text 66 68 this object is quite the same as pd's built-in [unpack] \, but it does not have fixed types; #X obj 409 249 zexy/unpack 1 2 3; #X msg 140 215 list a list is a list; #X msg 409 175 1 2; #X msg 446 226 bang; #X msg 428 198 list a list is a list; #X text 129 144 creation arguments specify the _number_ of atoms expected (default 2); #X obj 141 297 print unpack2; #X obj 121 317 print unpack1; #X obj 409 268 print upack1; #X obj 506 268 print upack3; #X obj 457 289 print upack2; #N canvas 460 154 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR IOhannes m zmoelnig; #X text 12 45 DESCRIPTION split a message to atoms; #X text 12 65 INLET_0 list bang float symbol pointer; #X text 12 85 OUTLET_N bang float symbol pointer; #X text 12 5 KEYWORDS control conversion list_op; #X restore 564 347 pd META; #X connect 2 0 15 0; #X connect 2 1 14 0; #X connect 3 0 2 0; #X connect 4 0 2 0; #X connect 8 0 16 0; #X connect 8 1 18 0; #X connect 8 2 17 0; #X connect 9 0 2 0; #X connect 10 0 8 0; #X connect 11 0 8 0; #X connect 12 0 8 0;
#N canvas 0 31 618 378 10; #X text 511 26 part of zexy; #X text 68 98 an atom can be intialized as a number \, then become a symbol \, later become a number again \, ....; #X obj 121 268 zexy/unpack; #X msg 121 192 1 2; #X msg 158 243 bang; #X obj 48 34 unpack; #X text 102 38 - split a message to atoms; #X text 66 68 this object is quite the same as pd's built-in [unpack] \, but it does not have fixed types; #X obj 409 249 zexy/unpack 1 2 3; #X msg 140 215 list a list is a list; #X msg 409 175 1 2; #X msg 446 226 bang; #X msg 428 198 list a list is a list; #X text 129 144 creation arguments specify the _number_ of atoms expected (default 2); #X obj 141 297 print unpack2; #X obj 121 317 print unpack1; #X obj 409 268 print upack1; #X obj 506 268 print upack3; #X obj 457 289 print upack2; #X connect 2 0 15 0; #X connect 2 1 14 0; #X connect 3 0 2 0; #X connect 4 0 2 0; #X connect 8 0 16 0; #X connect 8 1 18 0; #X connect 8 2 17 0; #X connect 9 0 2 0; #X connect 10 0 8 0; #X connect 11 0 8 0; #X connect 12 0 8 0;
40
control conversion list_op
split a message to atoms
create a purr-data patch that matches the following description and keywords.
Description: split a message to atoms, Keywords: control conversion list_op
all_about_finding_objects.pd
pd\doc\5.reference\all_about_finding_objects.pd
#N canvas 433 58 448 448 10; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header Pure_Data_search 20 10 1 18 -261106 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 425 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 377 352 494 103 META 0; #X text 12 65 LIBRARY PDDP; #X text 12 45 DESCRIPTION tips for searching for objects; #X text 12 85 HELP_PATCH_AUTHORS Jonathan Wilkes \, Pd-ext 0.42.; #X text 12 25 KEYWORDS help all_about_pd; #X restore 392 427 pd META; #X obj 6 427 pddp/pddplink all_about.pd -text All About Pd; #N canvas 193 269 428 183 References 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 Searching for Objects; #X text 32 39 * pdpedia; #X text 32 59 * mailing lists; #X text 32 79 * google; #X text 32 99 * your own harddrive; #X restore 103 427 pd References; #X text 19 121 Advanced Search; #X text 19 26 Simple Search; #X text 19 26 _____________; #X text 19 121 _______________; #X text 19 171 You can use regular expressions \, too:; #X text 19 188 "obj [0-9]+ [0-9]+ osc~ [0-9]+" will match all help patches that have an [osc~] object with a creation argument.; #X text 19 141 Use quotes to search for a specific phrase \, such as: "frequency modulation"; #X obj 24 250 pddp/pddplink http://www.tcl.tk/man/tcl8.5/TclCmd/re_syntax.htm ; #X text 19 218 Pd search uses the regex syntax from the Tcl language \, which is documented here:; #X text 19 382 For more details on PDDP tags \, see:; #X obj 24 399 pddp/pddplink all_about_pd_META.pd; #X text 19 46 Enter your search terms and click "Search" \, or click a keyword. You can use the drop-down menu below the search bar to filter the results by category. Searches are not case sensitive.; #X text 19 101 Use <ctrl-+> and <ctrl-=> to change the size of the fonts.; #X text 19 272 Finally \, you can make use of PDDP keywords to refine your search. They are listed at the bottom of the search homepage. Click one to see the regex syntax \, which you can use to search for any of the PDDP tag.; #X text 19 322 Clicking on a "folder" icon will bring up the containing directory in an external file browser. Clicking the "i" icon will bring up a README.txt for the containing library (or META.pd if there isn't a README). Internal objects will pop up a message saying so.;
#N canvas 433 58 448 448 10; #X text 19 121 Advanced Search; #X text 19 26 Simple Search; #X text 19 26 _____________; #X text 19 121 _______________; #X text 19 171 You can use regular expressions \, too:; #X text 19 188 "obj [0-9]+ [0-9]+ osc~ [0-9]+" will match all help patches that have an [osc~] object with a creation argument.; #X text 19 141 Use quotes to search for a specific phrase \, such as: "frequency modulation"; #X text 19 218 Pd search uses the regex syntax from the Tcl language \, which is documented here:; #X text 19 382 For more details on PDDP tags \, see:; #X text 19 46 Enter your search terms and click "Search" \, or click a keyword. You can use the drop-down menu below the search bar to filter the results by category. Searches are not case sensitive.; #X text 19 101 Use <ctrl-+> and <ctrl-=> to change the size of the fonts.; #X text 19 272 Finally \, you can make use of PDDP keywords to refine your search. They are listed at the bottom of the search homepage. Click one to see the regex syntax \, which you can use to search for any of the PDDP tag.; #X text 19 322 Clicking on a "folder" icon will bring up the containing directory in an external file browser. Clicking the "i" icon will bring up a README.txt for the containing library (or META.pd if there isn't a README). Internal objects will pop up a message saying so.;
34
help all_about_pd
tips for searching for objects
create a purr-data patch that matches the following description and keywords.
Description: tips for searching for objects, Keywords: help all_about_pd
atof-help.pd
externals\zexy\reference\atof-help.pd
#N canvas 533 119 615 317 10; #X floatatom 42 231 4 0 0 0 - - -; #X symbolatom 42 155 10 0 0 0 - - -; #X text 509 17 part of zexy; #N canvas 515 193 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 5 KEYWORDS control conversion; #X text 12 45 DESCRIPTION convert ascii to integer; #X text 12 105 AUTHOR IOhannes m zmoelnig; #X text 12 65 INLET_0 symbol; #X text 12 85 OUTLET_0 float; #X restore 565 297 pd META; #X obj 42 102 makefilename %g; #X obj 42 178 atof; #X symbolatom 79 201 10 0 0 1 reject - -; #X text 146 19 convert ascii to floats; #X obj 94 21 atof; #X text 328 286 updated for zexy-2.2.7; #X obj 45 64 hsl 128 15 0 2 0 0 empty empty empty -2 -8 0 10 -262144 -1 -1 8900 1; #X floatatom 42 84 5 0 0 0 - - -; #X msg 76 129 symbol foo; #X connect 1 0 5 0; #X connect 4 0 1 0; #X connect 5 0 0 0; #X connect 5 1 6 0; #X connect 10 0 11 0; #X connect 11 0 4 0; #X connect 12 0 1 0;
#N canvas 533 119 615 317 10; #X floatatom 42 231 4 0 0 0 - - -; #X symbolatom 42 155 10 0 0 0 - - -; #X text 509 17 part of zexy; #X obj 42 102 makefilename %g; #X obj 42 178 atof; #X symbolatom 79 201 10 0 0 1 reject - -; #X text 146 19 convert ascii to floats; #X obj 94 21 atof; #X text 328 286 updated for zexy-2.2.7; #X obj 45 64 hsl 128 15 0 2 0 0 empty empty empty -2 -8 0 10 -262144 -1 -1 8900 1; #X floatatom 42 84 5 0 0 0 - - -; #X msg 76 129 symbol foo; #X connect 1 0 5 0; #X connect 4 0 1 0; #X connect 5 0 0 0; #X connect 5 1 6 0; #X connect 10 0 11 0; #X connect 11 0 4 0; #X connect 12 0 1 0;
29
control conversion
convert ascii to integer
create a purr-data patch that matches the following description and keywords.
Description: convert ascii to integer, Keywords: control conversion
osascript-help.pd
externals\hcs\grabbag\osascript-help.pd
#N canvas 0 31 450 300 10; #X obj 47 213 osascript; #X text 21 23 run AppleScripts on Mac OS X; #X msg 33 99 tell application "safari" to open location "http://puredata.info" ; #X msg 64 152 tell application "firefox" to open location "http://puredata.info" ; #N canvas 404 246 494 344 META 0; #X text 12 105 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v3; #X text 12 85 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control filesystem; #X text 12 45 DESCRIPTION run AppleScripts on Mac OS X; #X text 12 65 INLET_0 tell; #X restore 392 266 pd META; #X connect 2 0 0 0; #X connect 3 0 0 0;
#N canvas 0 31 450 300 10; #X obj 47 213 osascript; #X text 21 23 run AppleScripts on Mac OS X; #X msg 33 99 tell application "safari" to open location "http://puredata.info" ; #X msg 64 152 tell application "firefox" to open location "http://puredata.info" ; #X connect 2 0 0 0; #X connect 3 0 0 0;
15
control filesystem
run AppleScripts on Mac OS X
create a purr-data patch that matches the following description and keywords.
Description: run AppleScripts on Mac OS X, Keywords: control filesystem
arbran-help.pd
externals\maxlib\arbran-help.pd
#N canvas 0 26 663 491 12; #X obj 41 152 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 41 249 5 0 0 0 - - -; #N canvas 0 0 450 300 (subpatch) 0; #X array \$0-a1 6 float 1; #A 0 1.1 2.67143 3.24285 3.1 4.38571 8.67143; #X coords 0 10 5 0 200 140 1; #X restore 347 71 graph; #N canvas 0 0 450 300 (subpatch) 0; #X array \$0-a2 6 float 1; #A 0 0.0229077 0.204366 0.486501 0.0632986 0.204028 0.025319; #X coords 0 1 5 0 200 140 1; #X restore 347 240 graph; #X text 39 21 arbran :: generates a random variable that conforms to the piecewise probability density functions specified in two arrays ; #X text 40 297 array1 has values between 0 and 10; #X text 40 317 array2 between 0 and 1 !; #X msg 99 152 pdfscale; #X text 41 389 array1 stores the values and array2 the corresponding probabilities (0 - 1) for each of that values \, use message 'pdfscale' to check (and adjust) the probability values to correct settings (the area below the curve has to be 1); #N canvas 293 158 494 344 META 0; #X text 12 155 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 135 AUTHOR Olaf Matthes <[email protected]>; #X text 12 45 DESCRIPTION generate a random variable conforming to the piecewise probability density functions specified in two arrays ; #X text 12 95 INLET_0 bang pdfscale; #X text 12 115 OUTLET_0 float; #X text 12 5 KEYWORDS control random array; #X restore 605 463 pd META; #X obj 41 202 arbran \$0-a1 \$0-a2; #X connect 0 0 10 0; #X connect 7 0 10 0; #X connect 10 0 1 0;
#N canvas 0 26 663 491 12; #X obj 41 152 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 41 249 5 0 0 0 - - -;
31
control random array
generate a random variable conforming to the piecewise probability density functions specified in two arrays
create a purr-data patch that matches the following description and keywords.
Description: generate a random variable conforming to the piecewise probability density functions specified in two arrays, Keywords: control random array
vstd-help.pd
externals\smlib\vstd-help.pd
#N canvas 1 53 394 160 10; #X msg 17 39 1 2 3 4; #X floatatom 51 95 5 0 0 0 - - -; #X msg 84 40 3 4 5; #X text 315 100 j#|@2002; #X obj 337 78 SMLib-help; #X msg 134 40 1 1 1 1; #X obj 51 70 vstd; #X msg 200 40 1 -1 1 -1 1; #X text 16 14 vstd computes the standard deviation of a vector; #N canvas 175 193 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Johannes Taelman ([email protected]) ; #X text 12 65 INLET_0 list float; #X text 12 45 DESCRIPTION standard deviation of a vector; #X text 12 85 OUTLET_0 float; #X text 12 5 KEYWORDS control list_op; #X restore 337 125 pd META; #X connect 0 0 6 0; #X connect 2 0 6 0; #X connect 5 0 6 0; #X connect 6 0 1 0; #X connect 7 0 6 0;
#N canvas 1 53 394 160 10; #X msg 17 39 1 2 3 4; #X floatatom 51 95 5 0 0 0 - - -; #X msg 84 40 3 4 5; #X text 315 100 j#|@2002; #X obj 337 78 SMLib-help; #X msg 134 40 1 1 1 1; #X obj 51 70 vstd; #X msg 200 40 1 -1 1 -1 1; #X text 16 14 vstd computes the standard deviation of a vector; #X connect 0 0 6 0; #X connect 2 0 6 0; #X connect 5 0 6 0; #X connect 6 0 1 0; #X connect 7 0 6 0;
24
control list_op
standard deviation of a vector
create a purr-data patch that matches the following description and keywords.
Description: standard deviation of a vector, Keywords: control list_op
bmatrix~-help.pd
externals\creb\doc\bmatrix~-help.pd
#N canvas 0 26 418 231 10; #X msg 69 127 load matrix.bin; #X text 27 39 added for completeness. mainly intended for spectral transfos; #X text 26 73 the file format is binary floating point \, column encoded. ; #X obj 46 174 bmatrix~; #X text 29 23 bmatrix multiplies a signal block with an arbitrary matrix ; #N canvas 200 154 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 5 KEYWORDS signal; #X text 12 45 DESCRIPTION multiply a signal block with an arbitrary matrix; #X text 12 85 OUTLET_0 signal; #X text 12 65 INLET_0 signal load; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Tom Schouten <[email protected]>; #X restore 369 209 pd META; #X connect 0 0 3 0;
#N canvas 0 26 418 231 10; #X msg 69 127 load matrix.bin; #X text 27 39 added for completeness. mainly intended for spectral transfos; #X text 26 73 the file format is binary floating point \, column encoded. ; #X obj 46 174 bmatrix~; #X text 29 23 bmatrix multiplies a signal block with an arbitrary matrix ; #X connect 0 0 3 0;
16
signal
multiply a signal block with an arbitrary matrix
create a purr-data patch that matches the following description and keywords.
Description: multiply a signal block with an arbitrary matrix, Keywords: signal
sl-help.pd
externals\ggee\control\sl-help.pd
#N canvas 0 31 501 213 10; #X text 20 141 (C) Guenter Geiger; #N canvas 46 242 494 344 META 0; #X text 12 105 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE Tcl/Tk; #X text 12 85 AUTHOR Guenter Geiger; #X text 12 5 KEYWORDS signal nonlocal canvas_op; #X text 12 45 DESCRIPTION send local to this canvas; #X text 12 65 INLET_0 anything; #X restore 440 183 pd META; #X obj 270 63 rl; #X obj 301 65 sl; #X floatatom 270 100 5 0 0 0 - - -; #X floatatom 301 41 5 0 0 0 - - -; #N canvas 352 127 450 300 local-send-and-receive-for-subpatches 0; #X obj 68 77 rl; #X obj 117 57 sl; #X floatatom 117 22 5 0 0 0 - - -; #X floatatom 68 118 5 0 0 0 - - -; #X connect 0 0 3 0; #X connect 2 0 1 0; #X restore 191 153 pd local-send-and-receive-for-subpatches; #X obj 152 78 receivelocal foo; #X obj 47 107 sendlocal foo; #X floatatom 152 106 5 0 0 0 - - -; #X floatatom 47 78 5 0 0 0 - - -; #X text 20 38 send local to this canvas; #X connect 2 0 4 0; #X connect 5 0 3 0; #X connect 7 0 9 0; #X connect 10 0 8 0;
#N canvas 0 31 501 213 10; #X text 20 141 (C) Guenter Geiger; #X obj 270 63 rl; #X obj 301 65 sl; #X floatatom 270 100 5 0 0 0 - - -; #X floatatom 301 41 5 0 0 0 - - -; #X obj 152 78 receivelocal foo; #X obj 47 107 sendlocal foo; #X floatatom 152 106 5 0 0 0 - - -; #X floatatom 47 78 5 0 0 0 - - -; #X text 20 38 send local to this canvas; #X connect 2 0 4 0; #X connect 5 0 3 0; #X connect 7 0 9 0; #X connect 10 0 8 0;
31
signal nonlocal canvas_op
send local to this canvas
create a purr-data patch that matches the following description and keywords.
Description: send local to this canvas, Keywords: signal nonlocal canvas_op
keygate-help.pd
externals\hid\keygate-help.pd
#N canvas 0 31 462 494 10; #X obj 5 2 cnv 15 450 20 empty empty keygate 2 11 1 18 -233017 -66577 0; #X obj 160 257 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 160 121 loadbang; #X msg 160 141 1; #X obj 160 169 metro 150; #X text 33 416 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 250 430 released under the GNU GPL; #X obj 237 369 pddp/pddplink ../all_about_hid.pd -text all_about_hid ; #X text 128 370 For more info:; #X text 15 207 data to be gated -->; #X obj 281 258 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 40 300 keyname; #X symbolatom 79 324 10 0 0 0 - - -; #X text 157 324 <-- check here for the keyname symbol; #X obj 160 214 keygate f; #X text 17 38 [keygate] is a simple gate controlled by a keyboard. You must specify the name of the key which controls the gate. The left inlet takes the data to be gated.; #X text 18 89 The "f" key on the any keyboard controls this gate:; #X text 310 263 <-- key released; #X text 41 264 key pressed -->; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #N canvas 472 31 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL; #X text 12 125 AUTHOR Hans-Christoph Steiner; #X text 12 85 OUTLET_0 bang; #X text 12 105 OUTLET_1 bang; #X text 12 45 DESCRIPTION simple gate controlled by a keyboard; #X text 12 65 INLET_0 bang; #X text 12 5 KEYWORDS control user_input abstraction; #X restore 407 462 pd META; #X connect 2 0 3 0; #X connect 3 0 4 0; #X connect 4 0 14 0; #X connect 11 1 12 0; #X connect 14 0 1 0; #X connect 14 1 10 0;
#N canvas 0 31 462 494 10; #X obj 160 257 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 160 121 loadbang; #X msg 160 141 1; #X obj 160 169 metro 150; #X text 33 416 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 250 430 released under the GNU GPL; #X text 128 370 For more info:; #X text 15 207 data to be gated -->; #X obj 281 258 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 40 300 keyname; #X symbolatom 79 324 10 0 0 0 - - -; #X text 157 324 <-- check here for the keyname symbol; #X obj 160 214 keygate f; #X text 17 38 [keygate] is a simple gate controlled by a keyboard. You must specify the name of the key which controls the gate. The left inlet takes the data to be gated.; #X text 18 89 The "f" key on the any keyboard controls this gate:; #X text 310 263 <-- key released; #X text 41 264 key pressed -->; #X connect 2 0 3 0; #X connect 3 0 4 0; #X connect 4 0 14 0; #X connect 11 1 12 0; #X connect 14 0 1 0; #X connect 14 1 10 0;
37
control user_input abstraction
simple gate controlled by a keyboard
create a purr-data patch that matches the following description and keywords.
Description: simple gate controlled by a keyboard, Keywords: control user_input abstraction
freadln-help.pd
externals\zexy\reference\freadln-help.pd
#N canvas 0 31 859 326 10; #X obj 443 239 print done; #X text 72 260 see also:; #X msg 433 149 bang; #X text 334 293 this outlet gets the lines in sequence.; #X obj 130 281 textfile; #X text 482 150 output one line as a list and move to the next; #X text 508 222 This outlet gets a bang when you hit the end of the sequence \; it will also get the current position when using "when" ; #X text 618 7 part of zexy; #X obj 406 267 print data; #X obj 73 9 freadln; #X text 18 57 The [freadln] object is a simplified version if [textfile]. It only supports reading files.; #X text 15 95 features are :; #X text 60 108 the file is not read into the objects buffer. instead only the current line will be streamed from the file. this allows to read _large_ files (which need not fit into the main memory at all) ; #X text 58 199 no random access!; #X text 9 183 drawbacks are :; #X obj 130 262 fwriteln; #X msg 433 178 close; #X text 548 117 open a file in 'cr' mode; #X obj 406 201 freadln; #X msg 435 116 open test.mtx cr; #N canvas 708 249 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR IOhannes m zmoelnig; #X text 12 5 KEYWORDS control storage filesystem; #X text 12 85 OUTLET_0 anything; #X text 12 105 OUTLET_1 bang; #X text 12 65 INLET_0 bang open close; #X text 12 45 DESCRIPTION read text files line by line; #X restore 806 297 pd META; #X text 127 9 read text-files line-by-line; #X connect 2 0 18 0; #X connect 16 0 18 0; #X connect 18 0 8 0; #X connect 18 1 0 0; #X connect 19 0 18 0;
#N canvas 0 31 859 326 10; #X obj 443 239 print done; #X text 72 260 see also:; #X msg 433 149 bang; #X text 334 293 this outlet gets the lines in sequence.; #X obj 130 281 textfile; #X text 482 150 output one line as a list and move to the next; #X text 508 222 This outlet gets a bang when you hit the end of the sequence \; it will also get the current position when using "when" ; #X text 618 7 part of zexy; #X obj 406 267 print data; #X obj 73 9 freadln; #X text 18 57 The [freadln] object is a simplified version if [textfile]. It only supports reading files.; #X text 15 95 features are :; #X text 60 108 the file is not read into the objects buffer. instead only the current line will be streamed from the file. this allows to read _large_ files (which need not fit into the main memory at all) ; #X text 58 199 no random access!; #X text 9 183 drawbacks are :; #X obj 130 262 fwriteln; #X msg 433 178 close; #X text 548 117 open a file in 'cr' mode; #X obj 406 201 freadln; #X msg 435 116 open test.mtx cr; #X text 127 9 read text-files line-by-line; #X connect 2 0 18 0; #X connect 16 0 18 0; #X connect 18 0 8 0; #X connect 18 1 0 0; #X connect 19 0 18 0;
37
control storage filesystem
read text files line by line
create a purr-data patch that matches the following description and keywords.
Description: read text files line by line, Keywords: control storage filesystem
bhip~-help.pd
externals\creb\doc\bhip~-help.pd
#N canvas 0 0 450 300 10; #X obj 130 55 bhip~; #X text 175 53 butterworth high pass filter; #N canvas 331 92 494 327 META 0; #X text 12 175 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 135 LIBRARY external creb; #X text 12 95 INLET_1 float; #X text 12 115 OUTLET_0 signal; #X text 12 5 KEYWORDS signal abstraction filter needs_work (example patch); #X text 12 55 DESCRIPTION butterworth high pass filter; #X text 12 75 INLET_0 signal; #X text 12 155 AUTHOR Tom Schouten <[email protected]>; #X text 12 35 LICENSE GPL v2; #X restore 398 277 pd META;
#N canvas 0 0 450 300 10; #X obj 130 55 bhip~; #X text 175 53 butterworth high pass filter;
14
signal abstraction filter needs_work (example patch)
butterworth high pass filter
create a purr-data patch that matches the following description and keywords.
Description: butterworth high pass filter, Keywords: signal abstraction filter needs_work (example patch)
all_about_writing_help_patches.pd
packages\win64_inno\build\doc\5.reference\all_about_writing_help_patches.pd
#N canvas 431 62 448 238 10; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header writing_help_patches 20 10 1 18 -261106 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 216 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 376 146 494 131 META 0; #X text 12 85 HELP_PATCH_AUTHORS Dave Sabine \, May 5 \, 2003 . Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 65 LIBRARY PDDP; #X text 12 45 DESCRIPTION guidelines for writing help patches; #X text 12 25 KEYWORDS needs_work all_about_pd; #X restore 392 218 pd META; #N canvas 218 145 428 105 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 Writing Help Patches- Related Objects; #X obj 20 37 pddp/helplink pddp/pddplink; #X obj 20 57 pddp/helplink pddp/helplink; #X text 109 37 - link to other patches \, web pages \, or text files ; #X text 109 57 - link to other objects' help patches; #X restore 103 218 pd Related_objects; #X obj 6 218 pddp/pddplink all_about.pd -text All About Pd; #X text 380 121 * pddplink and helplink; #X text 380 100 * pd META; #X text 383 145 This help file is unfinished.; #X text 19 36 Legitimate Authorities; #X text 19 36 ______________________; #X text 18 151 2) Include a short example patch. Justification: it's the whole reason to make help files be Pd patches!; #X text 18 56 1) For object help patches \, do not automatically turn on audio when the patch opens. Justification: there is no way to detect how the help patch audio will interact with whatever the user is already doing (such as opening several help patches simultaneously). Since unexpected audio signals can damage equipment (and ears) it is best to let the user turn on audio at his/her leisure.; #X text 18 181 You can use pddp/helplink and pddp/pddplink. See the "Related_objects" subpatch below for more info:;
#N canvas 431 62 448 238 10; #X text 380 121 * pddplink and helplink; #X text 380 100 * pd META; #X text 383 145 This help file is unfinished.; #X text 19 36 Legitimate Authorities; #X text 19 36 ______________________; #X text 18 151 2) Include a short example patch. Justification: it's the whole reason to make help files be Pd patches!; #X text 18 56 1) For object help patches \, do not automatically turn on audio when the patch opens. Justification: there is no way to detect how the help patch audio will interact with whatever the user is already doing (such as opening several help patches simultaneously). Since unexpected audio signals can damage equipment (and ears) it is best to let the user turn on audio at his/her leisure.; #X text 18 181 You can use pddp/helplink and pddp/pddplink. See the "Related_objects" subpatch below for more info:;
27
needs_work all_about_pd
guidelines for writing help patches
create a purr-data patch that matches the following description and keywords.
Description: guidelines for writing help patches, Keywords: needs_work all_about_pd
getdir-help.pd
externals\ggee\control\getdir-help.pd
#N canvas 0 26 460 383 10; #X obj 177 95 getdir; #X msg 177 57 bang; #X obj 176 133 print; #X text 17 21 get the directory that this patch is operating in:; #X text 18 165 You can also get the path of the parent patch \, if this patch is an object embedded in another patch. You use the argument to set how many levels up to go:; #X msg 99 212 bang; #X obj 98 288 print; #X obj 99 250 getdir 1; #X msg 294 209 bang; #X obj 293 285 print; #X obj 294 247 getdir 2; #X text 18 331 If there is no parent at that level \, it returns the directory as if there was no argument \, i.e. level 0; #N canvas 407 106 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE Tcl/Tk; #X text 12 105 AUTHOR Guenter Geiger; #X text 12 45 DESCRIPTION get the directory this patch is operating in; #X text 12 65 INLET_0 bang; #X text 12 85 OUTLET_0 symbol; #X text 12 5 KEYWORDS control patchfile_op filesystem; #X restore 410 362 pd META; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 5 0 7 0; #X connect 7 0 6 0; #X connect 8 0 10 0; #X connect 10 0 9 0;
#N canvas 0 26 460 383 10; #X obj 177 95 getdir; #X msg 177 57 bang; #X obj 176 133 print; #X text 17 21 get the directory that this patch is operating in:; #X text 18 165 You can also get the path of the parent patch \, if this patch is an object embedded in another patch. You use the argument to set how many levels up to go:; #X msg 99 212 bang; #X obj 98 288 print; #X obj 99 250 getdir 1; #X msg 294 209 bang; #X obj 293 285 print; #X obj 294 247 getdir 2; #X text 18 331 If there is no parent at that level \, it returns the directory as if there was no argument \, i.e. level 0; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 5 0 7 0; #X connect 7 0 6 0; #X connect 8 0 10 0; #X connect 10 0 9 0;
28
control patchfile_op filesystem
get the directory this patch is operating in
create a purr-data patch that matches the following description and keywords.
Description: get the directory this patch is operating in, Keywords: control patchfile_op filesystem
all_about_externals.pd
packages\win64_inno\build\doc\5.reference\all_about_externals.pd
#N canvas 431 60 446 395 10; #X obj 1 -2 cnv 15 445 20 empty \$0-pddp.cnv.header externals 20 12 1 18 -261106 -33289 0; #X obj 412 -2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 373 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 383 261 494 145 META 0; #X text 12 85 HELP_PATCH_AUTHORS Dave Sabine \, May 5 \, 2003 . Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 65 LIBRARY PDDP; #X text 12 45 DESCRIPTION notions of scope in Pd; #X text 12 25 KEYWORDS needs_work all_about_pd; #X restore 397 375 pd META; #N canvas 221 288 428 121 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 Externals - Related Objects; #X restore 103 375 pd Related_objects; #X obj 6 375 pddp/pddplink all_about.pd -text All About Pd; #X text 20 36 Externals are objects that can be used in addition to the core Pd objects \, or vanilla objects. Externals can be created with other programming languages like C \, C++ \, or Python \, as well as being programmed directly in Pd.; #X obj 59 347 pddp/pddplink all_about_libraries.pd; #N canvas 16 214 428 369 Subpatch 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 20 10 1 18 -261106 -33289 0; #X text 7 1 Subpatch; #X text 18 23 Subpatch; #X restore 23 164 pd Subpatch; #X text 20 116 This help file is unfinished;
#N canvas 431 60 446 395 10; #X obj 1 -2 cnv 15 445 20 empty \$0-pddp.cnv.header externals 20 12 1 18 -261106 -33289 0; #X obj 412 -2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 20 36 Externals are objects that can be used in addition to the core Pd objects \, or vanilla objects. Externals can be created with other programming languages like C \, C++ \, or Python \, as well as being programmed directly in Pd.; #X text 20 116 This help file is unfinished;
23
needs_work all_about_pd
notions of scope in Pd
create a purr-data patch that matches the following description and keywords.
Description: notions of scope in Pd, Keywords: needs_work all_about_pd
freadln-help.pd
externals\zexy\reference\freadln-help.pd
#N canvas 0 31 859 326 10; #X obj 443 239 print done; #X text 72 260 see also:; #X msg 433 149 bang; #X text 334 293 this outlet gets the lines in sequence.; #X obj 130 281 textfile; #X text 482 150 output one line as a list and move to the next; #X text 508 222 This outlet gets a bang when you hit the end of the sequence \; it will also get the current position when using "when" ; #X text 618 7 part of zexy; #X obj 406 267 print data; #X obj 73 9 freadln; #X text 18 57 The [freadln] object is a simplified version if [textfile]. It only supports reading files.; #X text 15 95 features are :; #X text 60 108 the file is not read into the objects buffer. instead only the current line will be streamed from the file. this allows to read _large_ files (which need not fit into the main memory at all) ; #X text 58 199 no random access!; #X text 9 183 drawbacks are :; #X obj 130 262 fwriteln; #X msg 433 178 close; #X text 548 117 open a file in 'cr' mode; #X obj 406 201 freadln; #X msg 435 116 open test.mtx cr; #N canvas 708 249 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR IOhannes m zmoelnig; #X text 12 5 KEYWORDS control storage filesystem; #X text 12 85 OUTLET_0 anything; #X text 12 105 OUTLET_1 bang; #X text 12 65 INLET_0 bang open close; #X text 12 45 DESCRIPTION read text files line by line; #X restore 806 297 pd META; #X text 127 9 read text-files line-by-line; #X connect 2 0 18 0; #X connect 16 0 18 0; #X connect 18 0 8 0; #X connect 18 1 0 0; #X connect 19 0 18 0;
#N canvas 0 31 859 326 10; #X obj 443 239 print done; #X text 72 260 see also:; #X msg 433 149 bang; #X text 334 293 this outlet gets the lines in sequence.; #X obj 130 281 textfile; #X text 482 150 output one line as a list and move to the next; #X text 508 222 This outlet gets a bang when you hit the end of the sequence \; it will also get the current position when using "when" ; #X text 618 7 part of zexy; #X obj 406 267 print data; #X obj 73 9 freadln; #X text 18 57 The [freadln] object is a simplified version if [textfile]. It only supports reading files.; #X text 15 95 features are :; #X text 60 108 the file is not read into the objects buffer. instead only the current line will be streamed from the file. this allows to read _large_ files (which need not fit into the main memory at all) ; #X text 58 199 no random access!; #X text 9 183 drawbacks are :; #X obj 130 262 fwriteln; #X msg 433 178 close; #X text 548 117 open a file in 'cr' mode; #X obj 406 201 freadln; #X msg 435 116 open test.mtx cr; #X text 127 9 read text-files line-by-line; #X connect 2 0 18 0; #X connect 16 0 18 0; #X connect 18 0 8 0; #X connect 18 1 0 0; #X connect 19 0 18 0;
37
control storage filesystem
read text files line by line
create a purr-data patch that matches the following description and keywords.
Description: read text files line by line, Keywords: control storage filesystem
1.2.create_patch.pd
pd\doc\manuals\pd-msg\1.msg_and_patch\1.2.create_patch.pd
#N canvas 109 25 743 475 10; #X msg 38 150 msg 10 10 bang; #X msg 38 198 obj 10 40 metro 500; #X msg 38 174 floatatom 100 10 7 50 5000; #X msg 38 270 obj 10 70 random 127; #X msg 38 318 floatatom 10 100 5; #X msg 38 366 text 10 130 That's it !; #X msg 38 222 connect 0 0 2 0; #X msg 38 246 connect 1 0 2 1; #X msg 38 294 connect 2 0 3 0; #X msg 38 342 connect 3 0 4 0; #X text 195 37 click here first; #X obj 38 404 s pd-new_patch; #X msg 33 37 obj 500 200 pd new_patch; #X text 40 127 and then click here to fill it :; #X obj 33 62 s pd-1.2.create_patch.pd; #X text 33 13 This will create a sub patch in this window and open it :; #N canvas 219 138 494 396 META 0; #X text 12 75 HELP_PATCH_AUTHORS Damien Henry. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 55 DESCRIPTION how to dynamically instantiate a subpatch ; #X text 12 34 LICENSE public domain; #X text 12 5 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial ; #X restore 685 449 pd META; #X connect 0 0 11 0; #X connect 1 0 11 0; #X connect 2 0 11 0; #X connect 3 0 11 0; #X connect 4 0 11 0; #X connect 5 0 11 0; #X connect 6 0 11 0; #X connect 7 0 11 0; #X connect 8 0 11 0; #X connect 9 0 11 0; #X connect 12 0 14 0;
#N canvas 109 25 743 475 10; #X msg 38 150 msg 10 10 bang; #X msg 38 198 obj 10 40 metro 500; #X msg 38 174 floatatom 100 10 7 50 5000; #X msg 38 270 obj 10 70 random 127; #X msg 38 318 floatatom 10 100 5; #X msg 38 366 text 10 130 That's it !; #X msg 38 222 connect 0 0 2 0; #X msg 38 246 connect 1 0 2 1; #X msg 38 294 connect 2 0 3 0; #X msg 38 342 connect 3 0 4 0; #X text 195 37 click here first; #X obj 38 404 s pd-new_patch; #X msg 33 37 obj 500 200 pd new_patch; #X text 40 127 and then click here to fill it :; #X obj 33 62 s pd-1.2.create_patch.pd; #X text 33 13 This will create a sub patch in this window and open it :; #X connect 0 0 11 0; #X connect 1 0 11 0; #X connect 2 0 11 0; #X connect 3 0 11 0; #X connect 4 0 11 0; #X connect 5 0 11 0; #X connect 6 0 11 0; #X connect 7 0 11 0; #X connect 8 0 11 0; #X connect 9 0 11 0; #X connect 12 0 14 0;
34
control canvas_op nonlocal dynamic_patching tutorial
how to dynamically instantiate a subpatch
create a purr-data patch that matches the following description and keywords.
Description: how to dynamically instantiate a subpatch, Keywords: control canvas_op nonlocal dynamic_patching tutorial
distance-help.pd
externals\mapping\distance-help.pd
#N canvas 1 53 463 447 10; #X obj 132 232 distance 0.3; #X obj 132 260 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 132 69 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -204786 -1 -1 0 0; #X floatatom 141 204 5 0 0 0 - - -; #X obj 204 202 hsl 128 15 0 1 0 0 empty empty empty -2 -6 0 10 -204800 -1 -1 0 0; #X floatatom 218 222 5 0 0 0 - - -; #X text 154 149 <-- the argument "0.3" sets the point here; #X floatatom 142 397 5 0 0 0 - - -; #X obj 5 2 cnv 15 450 20 empty empty distance 2 11 1 18 -233017 -66577 0; #X text 17 34 Measure the distance from a point and a stream; #N canvas 466 198 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 OUTLET_0 float; #X text 12 125 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION measure the distance from a point and a stream ; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 float; #X restore 406 416 pd META; #X connect 0 0 1 0; #X connect 1 0 7 0; #X connect 2 0 0 0; #X connect 2 0 3 0; #X connect 4 0 5 0; #X connect 4 0 0 1;
#N canvas 1 53 463 447 10; #X obj 132 232 distance 0.3; #X obj 132 260 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X obj 132 69 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -204786 -1 -1 0 0; #X floatatom 141 204 5 0 0 0 - - -; #X obj 204 202 hsl 128 15 0 1 0 0 empty empty empty -2 -6 0 10 -204800 -1 -1 0 0; #X floatatom 218 222 5 0 0 0 - - -; #X text 154 149 <-- the argument "0.3" sets the point here; #X floatatom 142 397 5 0 0 0 - - -; #X text 17 34 Measure the distance from a point and a stream; #X connect 0 0 1 0; #X connect 1 0 7 0; #X connect 2 0 0 0; #X connect 2 0 3 0; #X connect 4 0 5 0; #X connect 4 0 0 1;
27
control abstraction
measure the distance from a point and a stream
create a purr-data patch that matches the following description and keywords.
Description: measure the distance from a point and a stream, Keywords: control abstraction
bandpass-help.pd
externals\ggee\filters\bandpass-help.pd
#N canvas 0 26 423 419 10; #X text 63 298 These filters are all controlled by a bandwidth which is expressed in octaves. A bandwidth of 100 is equivalent to one octave. ; #X text 76 12 Bandpass coefficients for biquad~; #X text 70 26 ===================================; #X text 63 340 Attention \, only the left inlet triggers new coefficients for biquad~; #X text 8 388 (C) Guenter Geiger 2000; #X floatatom 176 119 0 0 0 0 - - -; #X floatatom 267 119 0 0 0 0 - - -; #X obj 267 142 trigger bang float; #X obj 113 216 biquad~; #X obj 113 156 noise~; #X obj 102 258 dac~; #X obj 179 74 hsl 128 17 20 20000 1 0 empty empty frequency 5 9 0 10 -203904 -1 -1 0 0; #X obj 270 97 hsl 128 17 0 100 0 0 empty empty bandwidth 5 9 0 10 -261682 -1 -1 0 1; #X obj 176 185 bandpass; #N canvas 433 26 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE Tcl/Tk; #X text 12 125 AUTHOR Guenter Geiger; #X text 12 5 KEYWORDS control; #X text 12 45 DESCRIPTION bandpass forefficients for biquad~; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 list; #X restore 372 396 pd META; #X connect 5 0 13 0; #X connect 6 0 7 0; #X connect 7 0 13 0; #X connect 7 1 13 1; #X connect 8 0 10 1; #X connect 8 0 10 0; #X connect 9 0 8 0; #X connect 11 0 5 0; #X connect 12 0 6 0; #X connect 13 0 8 0;
#N canvas 0 26 423 419 10; #X text 63 298 These filters are all controlled by a bandwidth which is expressed in octaves. A bandwidth of 100 is equivalent to one octave. ; #X text 76 12 Bandpass coefficients for biquad~; #X text 70 26 ===================================; #X text 63 340 Attention \, only the left inlet triggers new coefficients for biquad~; #X text 8 388 (C) Guenter Geiger 2000; #X floatatom 176 119 0 0 0 0 - - -; #X floatatom 267 119 0 0 0 0 - - -; #X obj 267 142 trigger bang float; #X obj 113 216 biquad~; #X obj 113 156 noise~; #X obj 102 258 dac~; #X obj 179 74 hsl 128 17 20 20000 1 0 empty empty frequency 5 9 0 10 -203904 -1 -1 0 0; #X obj 270 97 hsl 128 17 0 100 0 0 empty empty bandwidth 5 9 0 10 -261682 -1 -1 0 1; #X obj 176 185 bandpass; #X connect 5 0 13 0; #X connect 6 0 7 0; #X connect 7 0 13 0; #X connect 7 1 13 1; #X connect 8 0 10 1; #X connect 8 0 10 0; #X connect 9 0 8 0; #X connect 11 0 5 0; #X connect 12 0 6 0; #X connect 13 0 8 0;
35
control
bandpass forefficients for biquad~
create a purr-data patch that matches the following description and keywords.
Description: bandpass forefficients for biquad~, Keywords: control
downsample-help.pd
externals\mapping\downsample-help.pd
#N canvas 1 53 364 324 10; #X floatatom 43 52 5 0 0 0 - - -; #X floatatom 43 257 5 0 0 0 - - -; #X obj 84 168 t b b; #X obj 84 195 timer; #X floatatom 84 221 5 0 0 0 - - -; #X obj 43 77 resample 30; #X obj 43 108 downsample 3; #X text 120 25 output 1 over n data.; #N canvas 377 119 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 45 DESCRIPTION output 1 over n data; #X text 12 65 INLET_0 anything; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 anything; #X text 12 5 KEYWORDS control abstraction filter; #X restore 284 282 pd META; #X connect 0 0 5 0; #X connect 2 0 3 0; #X connect 2 1 3 1; #X connect 3 0 4 0; #X connect 5 0 6 0; #X connect 6 0 2 0; #X connect 6 0 1 0;
#N canvas 1 53 364 324 10; #X floatatom 43 52 5 0 0 0 - - -; #X floatatom 43 257 5 0 0 0 - - -; #X obj 84 168 t b b; #X obj 84 195 timer; #X floatatom 84 221 5 0 0 0 - - -; #X obj 43 77 resample 30; #X obj 43 108 downsample 3; #X text 120 25 output 1 over n data.; #X connect 0 0 5 0; #X connect 2 0 3 0; #X connect 2 1 3 1; #X connect 3 0 4 0; #X connect 5 0 6 0; #X connect 6 0 2 0; #X connect 6 0 1 0;
26
control abstraction filter
output 1 over n data
create a purr-data patch that matches the following description and keywords.
Description: output 1 over n data, Keywords: control abstraction filter
all_about_haptics.pd
pd\doc\5.reference\all_about_haptics.pd
#N canvas 429 58 448 374 10; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header haptics 20 10 1 18 -261106 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 352 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 374 245 494 136 META 0; #X text 12 85 HELP_PATCH_AUTHORS Dave Sabine \, May 5 \, 2003 . Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 65 LIBRARY PDDP; #X text 12 45 DESCRIPTION definition of haptics; #X text 12 25 KEYWORDS needs_work all_about_pd; #X restore 392 354 pd META; #N canvas 212 24 428 359 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 Haptic Objects in Pd; #X text 72 58 Control the pulses and vibrations of a TouchSense (aka iFeel) mouse; #X text 24 114 Set the overall gain for all force effects; #X text 24 153 Apply forces to automatically center the controller ; #X text 24 193 Apply a spring force in a specified direction; #X text 24 233 Apply friction to the movement of the controller. Also known as damping.; #X text 25 280 Periodic effects are forces controlled by waveforms of various shape \, strength \, and frequency; #X text 25 329 Apply a constant force in a specified direction; #X obj 10 33 pddp/pddplink all_about_externals.pd -text _________; #X obj 10 33 pddp/pddplink all_about_externals.pd -text Externals; #X obj 10 58 pddp/helplink hcs/ifeel; #X obj 10 94 pddp/helplink flatspace/ff-gain; #X obj 10 134 pddp/helplink flatspace/ff-autocenter; #X obj 10 174 pddp/helplink flatspace/ff-spring; #X obj 10 214 pddp/helplink flatspace/ff-friction; #X obj 10 264 pddp/helplink flatspace/ff-periodic; #X obj 10 314 pddp/helplink flatspace/ff-constant; #X restore 103 354 pd Related_objects; #X obj 6 354 pddp/pddplink all_about.pd -text All About Pd; #X text 19 37 "Haptic" means relating to the sense of touch. Haptic feedback relates to the sense of touch at the skin level \, and the feeling of forces in the muscles and joints. Vibrations stimulate the sense of touch while various forces stimulate the muscles.; #X text 19 106 There are many haptic devices available \, from a US\$35 Logitech iFeel mouse \, to the massive \, extremely expensive haptic devices used for remote control surgery. Immersion \, Inc. has almost a monopoly on this technology due to a number of patents. These objects all work with Immersion technology \, generally known as "TouchSense". ; #X text 19 188 Numerous companies produce haptic game controllers: mice \, joysticks \, gamepads \, steering wheels. These objects work with game controllers. Belkin \, Logitech \, Microsoft \, Saitek \, and others make TouchSense game controllers.; #X text 19 245 Currently \, these objects only work on GNU/Linux. For info on how to get it working \, see: http://at.or.at/hans/haptics ; #X text 19 295 See also:; #X obj 19 315 pddp/pddplink all_about_hid.pd;
#N canvas 429 58 448 374 10; #X text 19 37 "Haptic" means relating to the sense of touch. Haptic feedback relates to the sense of touch at the skin level \, and the feeling of forces in the muscles and joints. Vibrations stimulate the sense of touch while various forces stimulate the muscles.; #X text 19 106 There are many haptic devices available \, from a US\$35 Logitech iFeel mouse \, to the massive \, extremely expensive haptic devices used for remote control surgery. Immersion \, Inc. has almost a monopoly on this technology due to a number of patents. These objects all work with Immersion technology \, generally known as "TouchSense". ; #X text 19 188 Numerous companies produce haptic game controllers: mice \, joysticks \, gamepads \, steering wheels. These objects work with game controllers. Belkin \, Logitech \, Microsoft \, Saitek \, and others make TouchSense game controllers.; #X text 19 245 Currently \, these objects only work on GNU/Linux. For info on how to get it working \, see: http://at.or.at/hans/haptics ; #X text 19 295 See also:;
37
needs_work all_about_pd
definition of haptics
create a purr-data patch that matches the following description and keywords.
Description: definition of haptics, Keywords: needs_work all_about_pd
A01.sinewave.pd
packages\win64_inno\build\doc\3.audio.examples\A01.sinewave.pd
#N canvas 434 81 448 475 10; #X obj 95 99 osc~ 440; #X obj 95 158 dac~; #X text 162 99 <-- 440 Hz. sine wave at full blast; #X obj 95 128 *~ 0.05; #X text 19 181 Audio computation can be turned on and off by sending messages to the global "pd" object as follows:; #X msg 85 217 \; pd dsp 1; #X msg 189 217 \; pd dsp 0; #X text 100 254 ON; #X text 209 254 OFF; #X text 16 275 You should see the Pd window change to reflect whether audio is on or off. You can also turn audio on and off using the "audio" menu \, but the buttons are provided as a shortcut.; #X text 17 336 When DSP is on \, you should hear a tone whose pitch is A 440 and whose amplitude is 0.05. If instead you are greeted with silence \, you might want to read the HTML documentation on setting up audio.; #X text 16 393 In general when you start a work session with Pd \, you will want to choose "test audio and MIDI" from the help window \, which opens a more comprehensive test patch than this one.; #X text 263 224 <-- click these; #X text 162 128 <-- reduce amplitude to 0.05; #X text 19 37 Audio computation in Pd is done using "tilde objects" such as the three below. They use continuous audio streams to intercommunicate \, as well as communicating with other ("control") Pd objects using messages.; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header making_a_sinewave 20 10 1 18 -261139 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 162 158 <-- send to the audio output device; #X obj 1 453 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 44 246 494 284 META 0; #X text 12 105 WEBSITE http://crca.ucsd.edu/~msp/; #X text 12 85 AUTHOR Miller Puckette; #X text 12 65 LIBRARY PDDP; #X text 12 25 LICENSE SIBSD; #X text 12 125 HELP_PATCH_AUTHORS Updated for release 0.36. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION making a sinewave; #X text 12 5 KEYWORDS signal tutorial; #X restore 392 455 pd META; #N canvas 13 202 428 190 References 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261139 -33289 0; #X text 7 2 making a sinewave- Related Help Documents; #X text 19 37 Refer to the manual \, as well as Miller's book.; #X restore 103 455 pd References; #X obj 6 455 pddp/pddplink ../5.reference/pddp/help.pd -text help; #X connect 0 0 3 0; #X connect 3 0 1 0;
#N canvas 434 81 448 475 10; #X obj 95 99 osc~ 440; #X obj 95 158 dac~; #X text 162 99 <-- 440 Hz. sine wave at full blast; #X obj 95 128 *~ 0.05; #X text 19 181 Audio computation can be turned on and off by sending messages to the global "pd" object as follows:; #X msg 85 217 \; pd dsp 1; #X msg 189 217 \; pd dsp 0; #X text 100 254 ON; #X text 209 254 OFF; #X text 16 275 You should see the Pd window change to reflect whether audio is on or off. You can also turn audio on and off using the "audio" menu \, but the buttons are provided as a shortcut.; #X text 17 336 When DSP is on \, you should hear a tone whose pitch is A 440 and whose amplitude is 0.05. If instead you are greeted with silence \, you might want to read the HTML documentation on setting up audio.; #X text 16 393 In general when you start a work session with Pd \, you will want to choose "test audio and MIDI" from the help window \, which opens a more comprehensive test patch than this one.; #X text 263 224 <-- click these; #X text 162 128 <-- reduce amplitude to 0.05; #X text 19 37 Audio computation in Pd is done using "tilde objects" such as the three below. They use continuous audio streams to intercommunicate \, as well as communicating with other ("control") Pd objects using messages.; #X text 162 158 <-- send to the audio output device; #X connect 0 0 3 0; #X connect 3 0 1 0;
37
signal tutorial
making a sinewave
create a purr-data patch that matches the following description and keywords.
Description: making a sinewave, Keywords: signal tutorial
tabreceive~-help.pd
pd\doc\5.reference\tabreceive~-help.pd
#N canvas 429 35 555 619 10; #X obj 0 595 cnv 15 552 21 empty \$0-pddp.cnv.footer empty 20 12 0 14 -228856 -66577 0; #X obj 0 0 cnv 15 552 40 empty \$0-pddp.cnv.header tabreceive~ 3 12 0 18 -204280 -1 0; #X obj 0 450 cnv 3 550 3 empty \$0-pddp.cnv.inlets inlets 8 12 0 13 -228856 -1 0; #N canvas 483 288 494 344 META 0; #X text 12 115 LIBRARY internal; #X text 12 155 WEBSITE http://crca.ucsd.edu/~msp/; #X text 12 25 LICENSE SIBSD; #X text 12 135 AUTHOR Miller Puckette; #X text 12 195 HELP_PATCH_AUTHORS Updated for Pd version 0.33. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION read a block of a signal from an array continuously ; #X text 12 75 INLET_0; #X text 12 95 OUTLET_0 signal; #X text 12 175 RELEASE_DATE 1997; #X text 12 5 KEYWORDS signal array block_oriented; #X restore 500 597 pd META; #X obj 0 487 cnv 3 550 3 empty \$0-pddp.cnv.outlets outlets 8 12 0 13 -228856 -1 0; #X obj 0 524 cnv 3 550 3 empty \$0-pddp.cnv.argument arguments 8 12 0 13 -228856 -1 0; #X obj 0 565 cnv 3 550 3 empty \$0-pddp.cnv.more_info more_info 8 12 0 13 -228856 -1 0; #N canvas 214 527 428 109 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -204280 -1 0; #X obj 103 43 fft~; #X obj 23 43 tabsend~; #X text 8 2 [tabreceive~] Related Objects; #X restore 102 597 pd Related_objects; #X obj 78 459 cnv 17 3 17 empty \$0-pddp.cnv.let.0 0 5 9 0 16 -228856 -162280 0; #X obj 78 496 cnv 17 3 17 empty \$0-pddp.cnv.let.0 0 5 9 0 16 -228856 -162280 0; #X obj 466 10 tabreceive~; #X text 11 23 read a block of a signal from an array continuously; #X obj 95 226 tabreceive~; #X text 90 291 By default a block is 64 samples \; this can be reset using the block~ object.; #X text 203 226 - read a block of a signal from an array continuously ; #X text 168 542 - the name of an array to read from.; #X text 98 495 signal; #X text 98 458 unknown; #X text 80 542 1) symbol atom; #X obj 4 597 pddp/pddplink all_about_help_patches.pd -text Usage Guide ; #X obj 474 55 pddp/dsp; #X obj 98 570 pddp/pddplink all_about_arrays.pd;
#N canvas 429 35 555 619 10; #X obj 466 10 tabreceive~; #X text 11 23 read a block of a signal from an array continuously; #X obj 95 226 tabreceive~; #X text 90 291 By default a block is 64 samples \; this can be reset using the block~ object.; #X text 203 226 - read a block of a signal from an array continuously ; #X text 168 542 - the name of an array to read from.; #X text 98 495 signal; #X text 98 458 unknown; #X text 80 542 1) symbol atom; #X obj 474 55 pddp/dsp;
39
signal array block_oriented
read a block of a signal from an array continuously
create a purr-data patch that matches the following description and keywords.
Description: read a block of a signal from an array continuously, Keywords: signal array block_oriented
mavg-help.pd
externals\zexy\reference\mavg-help.pd
#N canvas 0 31 452 302 10; #X obj 119 132 metro 100; #X obj 119 155 random 10; #X floatatom 119 245 4 0 0 0 - - -; #X msg 120 107 1; #X msg 153 108 0; #X obj 119 212 mavg 4; #X floatatom 158 188 4 0 0 0 - - -; #X text 59 20 moving average filter; #X text 199 188 samples to average; #X text 277 47 part of zexy; #N canvas 515 193 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR IOhannes m zmoelnig; #X text 12 5 KEYWORDS control; #X text 12 45 DESCRIPTION moving average filter; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 float; #X restore 390 271 pd META; #X connect 0 0 1 0; #X connect 1 0 5 0; #X connect 3 0 0 0; #X connect 4 0 0 0; #X connect 5 0 2 0; #X connect 6 0 5 1;
#N canvas 0 31 452 302 10; #X obj 119 132 metro 100; #X obj 119 155 random 10; #X floatatom 119 245 4 0 0 0 - - -; #X msg 120 107 1; #X msg 153 108 0; #X obj 119 212 mavg 4; #X floatatom 158 188 4 0 0 0 - - -; #X text 59 20 moving average filter; #X text 199 188 samples to average; #X text 277 47 part of zexy; #X connect 0 0 1 0; #X connect 1 0 5 0; #X connect 3 0 0 0; #X connect 4 0 0 0; #X connect 5 0 2 0; #X connect 6 0 5 1;
27
control
moving average filter
create a purr-data patch that matches the following description and keywords.
Description: moving average filter, Keywords: control
keygate-help.pd
externals\hid\keygate-help.pd
#N canvas 0 31 462 494 10; #X obj 5 2 cnv 15 450 20 empty empty keygate 2 11 1 18 -233017 -66577 0; #X obj 160 257 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 160 121 loadbang; #X msg 160 141 1; #X obj 160 169 metro 150; #X text 33 416 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 250 430 released under the GNU GPL; #X obj 237 369 pddp/pddplink ../all_about_hid.pd -text all_about_hid ; #X text 128 370 For more info:; #X text 15 207 data to be gated -->; #X obj 281 258 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 40 300 keyname; #X symbolatom 79 324 10 0 0 0 - - -; #X text 157 324 <-- check here for the keyname symbol; #X obj 160 214 keygate f; #X text 17 38 [keygate] is a simple gate controlled by a keyboard. You must specify the name of the key which controls the gate. The left inlet takes the data to be gated.; #X text 18 89 The "f" key on the any keyboard controls this gate:; #X text 310 263 <-- key released; #X text 41 264 key pressed -->; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #N canvas 472 31 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL; #X text 12 125 AUTHOR Hans-Christoph Steiner; #X text 12 85 OUTLET_0 bang; #X text 12 105 OUTLET_1 bang; #X text 12 45 DESCRIPTION simple gate controlled by a keyboard; #X text 12 65 INLET_0 bang; #X text 12 5 KEYWORDS control user_input abstraction; #X restore 407 462 pd META; #X connect 2 0 3 0; #X connect 3 0 4 0; #X connect 4 0 14 0; #X connect 11 1 12 0; #X connect 14 0 1 0; #X connect 14 1 10 0;
#N canvas 0 31 462 494 10; #X obj 160 257 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 160 121 loadbang; #X msg 160 141 1; #X obj 160 169 metro 150; #X text 33 416 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 250 430 released under the GNU GPL; #X text 128 370 For more info:; #X text 15 207 data to be gated -->; #X obj 281 258 bng 25 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 40 300 keyname; #X symbolatom 79 324 10 0 0 0 - - -; #X text 157 324 <-- check here for the keyname symbol; #X obj 160 214 keygate f; #X text 17 38 [keygate] is a simple gate controlled by a keyboard. You must specify the name of the key which controls the gate. The left inlet takes the data to be gated.; #X text 18 89 The "f" key on the any keyboard controls this gate:; #X text 310 263 <-- key released; #X text 41 264 key pressed -->; #X connect 2 0 3 0; #X connect 3 0 4 0; #X connect 4 0 14 0; #X connect 11 1 12 0; #X connect 14 0 1 0; #X connect 14 1 10 0;
37
control user_input abstraction
simple gate controlled by a keyboard
create a purr-data patch that matches the following description and keywords.
Description: simple gate controlled by a keyboard, Keywords: control user_input abstraction
mapping2radians-help.pd
externals\mapping\mapping2radians-help.pd
#N canvas 1 53 475 336 10; #X obj 5 2 cnv 15 450 20 empty empty mapping2radians 2 11 1 18 -233017 -66577 0; #X msg 422 3 pddp; #X text 254 269 released under the GNU GPL; #X text 185 228 For more info:; #X obj 289 226 pddp/pddplink ../mapping-about.pd -text mapping-about ; #X text 40 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 294 161 related objects:; #X obj 234 181 radians2mapping; #X obj 346 181 degrees2mapping; #X floatatom 69 185 9 0 0 1 radians - -; #X obj 72 85 hsl 128 15 0 1 0 0 empty empty mapping 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 115 5 0 0 0 - - -; #X obj 69 150 mapping2radians; #X text 26 34 This object converts numbers from the mapping range (0 to 1) to radians (-pi to pi) with the 0's lining up in the same place. ; #X obj 288 200 mapping2degrees; #N canvas 466 198 494 344 META 0; #X text 12 135 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 95 OUTLET_0 float; #X text 12 115 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 75 INLET_0 float; #X text 12 5 KEYWORDS control abstraction conversion; #X text 12 45 DESCRIPTION convert numbers from the mapping range (0 to 1) to radians (-pi to pi) with 0's lining up in the same place; #X restore 413 304 pd META; #X connect 10 0 11 0; #X connect 10 0 12 0; #X connect 12 0 9 0;
#N canvas 1 53 475 336 10; #X msg 422 3 pddp; #X text 254 269 released under the GNU GPL; #X text 185 228 For more info:; #X text 40 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 294 161 related objects:; #X obj 234 181 radians2mapping; #X obj 346 181 degrees2mapping; #X floatatom 69 185 9 0 0 1 radians - -; #X obj 72 85 hsl 128 15 0 1 0 0 empty empty mapping 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 115 5 0 0 0 - - -; #X obj 69 150 mapping2radians; #X text 26 34 This object converts numbers from the mapping range (0 to 1) to radians (-pi to pi) with the 0's lining up in the same place. ; #X obj 288 200 mapping2degrees; #X connect 10 0 11 0; #X connect 10 0 12 0; #X connect 12 0 9 0;
28
control abstraction conversion
convert numbers from the mapping range (0 to 1) to radians (-pi to pi) with 0's lining up in the same place
create a purr-data patch that matches the following description and keywords.
Description: convert numbers from the mapping range (0 to 1) to radians (-pi to pi) with 0's lining up in the same place, Keywords: control abstraction conversion
sample_record~-help.pd
externals\tof\tof\sample_record~-help.pd
#N canvas 1 53 766 482 10; #X text 227 253 Argument 1 \, symbol: the name of the sample to record to; #X text 44 4 Description: Records into samples; #X text 41 21 Tags: Sound Sample Record; #X obj 65 198 adc~; #X obj 206 176 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X text 239 44 A 10 second mono sample (at a samplerate of 44100); #X obj 75 331 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 74 416 dac~; #X obj 104 332 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X msg 225 215 sample recording; #X text 57 126 Inlet 1 \, signal: left or mono channel audio data; #X text 56 141 Inlet 2 \, signal: right channel audio data; #X text 332 213 Inlet 3 \, sample symbol: set the sample; #X text 231 171 Inlet 3 \, float: turn recording on/off. The maximum recording length is limited by the size of the sample; #X text 130 329 Play or loop the recording; #X obj 242 66 tof/sample recording 441000 1; #X obj 65 253 sample_record~ recording; #X obj 75 373 tof/sample_play~ recording; #N canvas 371 286 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 LICENSE GPL v2; #X text 12 125 AUTHOR Thomas Ouellet Fredericks; #X text 12 25 DESCRIPTION record into samples; #X text 12 5 KEYWORDS control abstraction array soundfile; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 105 INLET_2 float sample; #X restore 705 427 pd META; #X connect 3 0 16 0; #X connect 4 0 16 2; #X connect 6 0 17 0; #X connect 8 0 17 0; #X connect 9 0 16 2; #X connect 17 0 7 0; #X connect 17 1 7 1;
#N canvas 1 53 766 482 10; #X text 227 253 Argument 1 \, symbol: the name of the sample to record to; #X text 44 4 Description: Records into samples; #X text 41 21 Tags: Sound Sample Record; #X obj 65 198 adc~; #X obj 206 176 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X text 239 44 A 10 second mono sample (at a samplerate of 44100); #X obj 75 331 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 74 416 dac~; #X obj 104 332 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X msg 225 215 sample recording; #X text 57 126 Inlet 1 \, signal: left or mono channel audio data; #X text 56 141 Inlet 2 \, signal: right channel audio data; #X text 332 213 Inlet 3 \, sample symbol: set the sample; #X text 231 171 Inlet 3 \, float: turn recording on/off. The maximum recording length is limited by the size of the sample; #X text 130 329 Play or loop the recording; #X obj 242 66 tof/sample recording 441000 1; #X obj 65 253 sample_record~ recording; #X obj 75 373 tof/sample_play~ recording; #X connect 3 0 16 0; #X connect 4 0 16 2; #X connect 6 0 17 0; #X connect 8 0 17 0; #X connect 9 0 16 2; #X connect 17 0 7 0; #X connect 17 1 7 1;
36
control abstraction array soundfile
record into samples
create a purr-data patch that matches the following description and keywords.
Description: record into samples, Keywords: control abstraction array soundfile
ccmap~-help.pd
externals\creb\doc\ccmap~-help.pd
#N canvas 0 26 450 300 10; #X text 23 10 conformal self map of the unit disk (z-a)/(1-conj(a)z) ; #N canvas 331 92 494 392 META 0; #X text 12 205 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 145 OUTLET_0 signal; #X text 12 45 DESCRIPTION conformal self map of the unit disk; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 105 INLET_2 signal; #X text 12 125 INLET_3 signal; #X text 12 165 OUTLET_1 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 185 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X restore 398 277 pd META; #X obj 24 90 ccmap~;
#N canvas 0 26 450 300 10; #X text 23 10 conformal self map of the unit disk (z-a)/(1-conj(a)z) ; #X obj 24 90 ccmap~;
16
signal abstraction needs_work (example patch)
conformal self map of the unit disk
create a purr-data patch that matches the following description and keywords.
Description: conformal self map of the unit disk, Keywords: signal abstraction needs_work (example patch)
linspace-help.pd
externals\smlib\linspace-help.pd
#N canvas 1 53 396 195 10; #X text 302 132 j#|@2002; #X obj 324 112 SMLib-help; #X obj 29 147 print linspace; #X floatatom 136 101 5 0 0 0 - - -; #X floatatom 82 80 5 0 0 0 - - -; #X floatatom 29 58 5 0 0 0 - - -; #X obj 11 38 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 29 36 generate; #X text 132 80 set b; #X text 187 101 set n; #X text 79 56 set a and generate; #X obj 29 124 linspace 0 1 4; #X text 9 6 generates a vector with linear spaced floats; #N canvas 226 226 494 344 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR Johannes Taelman ([email protected]) ; #X text 12 5 KEYWORDS control; #X text 12 125 OUTLET_0 list; #X text 12 45 DESCRIPTION generate a vector with linear spaced floats ; #X text 12 65 INLET_0 bang float; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X restore 339 154 pd META; #X connect 3 0 11 2; #X connect 4 0 11 1; #X connect 5 0 11 0; #X connect 6 0 11 0; #X connect 11 0 2 0;
#N canvas 1 53 396 195 10; #X text 302 132 j#|@2002; #X obj 324 112 SMLib-help; #X obj 29 147 print linspace; #X floatatom 136 101 5 0 0 0 - - -; #X floatatom 82 80 5 0 0 0 - - -; #X floatatom 29 58 5 0 0 0 - - -; #X obj 11 38 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 29 36 generate; #X text 132 80 set b; #X text 187 101 set n; #X text 79 56 set a and generate; #X obj 29 124 linspace 0 1 4; #X text 9 6 generates a vector with linear spaced floats; #X connect 3 0 11 2; #X connect 4 0 11 1; #X connect 5 0 11 0; #X connect 6 0 11 0; #X connect 11 0 2 0;
30
control
generate a vector with linear spaced floats
create a purr-data patch that matches the following description and keywords.
Description: generate a vector with linear spaced floats, Keywords: control
debounce-help.pd
externals\mapping\debounce-help.pd
#N canvas 1 53 470 540 10; #X obj 2 2 cnv 15 450 20 empty empty debounce 2 11 1 18 -233017 -66577 0; #X msg 418 3 pddp; #X text 234 467 released under the GNU GPL; #X text 18 499 $Author: nusmuk $; #X text 17 453 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X obj 122 78 bng 15 250 50 0 empty empty empty 0 -6 0 8 -24198 -1 -1; #X obj 123 102 t b b; #X obj 123 142 delay; #X obj 63 121 bang; #X msg 85 78 stop; #X obj 123 171 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 123 228 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 123 198 debounce 2000; #X obj 152 122 random 1000; #X text 17 486 $Revision: 1.2 $$Date: 2006-11-10 15:43:46 $; #X text 26 388 Every input is converted to a "bang".; #N canvas 465 169 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 85 INLET_1 float; #X text 12 125 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 45 DESCRIPTION remove bangs if they arrive too fast; #X text 12 65 INLET_0 anything; #X text 12 105 OUTLET_0 bang; #X text 12 5 KEYWORDS control abstraction filter; #X restore 413 507 pd META; #X text 26 366 Debounce removes bangs if they arrive too fast.; #X connect 5 0 6 0; #X connect 6 0 7 0; #X connect 6 1 13 0; #X connect 7 0 8 0; #X connect 7 0 10 0; #X connect 8 0 6 0; #X connect 9 0 7 0; #X connect 10 0 12 0; #X connect 12 0 11 0; #X connect 13 0 7 1;
#N canvas 1 53 470 540 10; #X msg 418 3 pddp; #X text 234 467 released under the GNU GPL; #X text 18 499 $Author: nusmuk $; #X text 17 453 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X obj 122 78 bng 15 250 50 0 empty empty empty 0 -6 0 8 -24198 -1 -1; #X obj 123 102 t b b; #X obj 123 142 delay; #X obj 63 121 bang; #X msg 85 78 stop; #X obj 123 171 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 123 228 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 123 198 debounce 2000; #X obj 152 122 random 1000; #X text 17 486 $Revision: 1.2 $$Date: 2006-11-10 15:43:46 $; #X text 26 388 Every input is converted to a "bang".; #X text 26 366 Debounce removes bangs if they arrive too fast.; #X connect 5 0 6 0; #X connect 6 0 7 0; #X connect 6 1 13 0; #X connect 7 0 8 0; #X connect 7 0 10 0; #X connect 8 0 6 0; #X connect 9 0 7 0; #X connect 10 0 12 0; #X connect 12 0 11 0; #X connect 13 0 7 1;
38
control abstraction filter
remove bangs if they arrive too fast
create a purr-data patch that matches the following description and keywords.
Description: remove bangs if they arrive too fast, Keywords: control abstraction filter
synapseA~-help.pd
externals\mjlib\synapseA~-help.pd
#N canvas 3 53 450 300 10; #X text 120 178 placeholder help patch; #X text 147 62 from mjlib; #X obj 162 123 synapseA~; #N canvas 466 220 494 344 META 0; #X text 12 205 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 35 LICENSE GPL v2; #X text 12 185 AUTHOR Mark Williamson <[email protected]>; #X text 12 145 OUTLET_1; #X text 12 5 KEYWORDS signal needs_work (EXAMPLE/INLETS/OUTLETS/DESCRIPTION?) ; #X text 12 55 DESCRIPTION; #X text 12 85 INLET_0 signal; #X text 12 105 INLET_1; #X text 12 125 OUTLET_0; #X text 12 165 OUTLET_2; #X restore 398 269 pd META;
#N canvas 3 53 450 300 10; #X text 120 178 placeholder help patch; #X text 147 62 from mjlib; #X obj 162 123 synapseA~;
16
signal needs_work (EXAMPLE/INLETS/OUTLETS/DESCRIPTION?)
?)
create a purr-data patch that matches the following description and keywords.
Description: ?), Keywords: signal needs_work (EXAMPLE/INLETS/OUTLETS/DESCRIPTION?)
vlrange-help.pd
externals\smlib\vlrange-help.pd
#N canvas 1 53 400 214 10; #X text 296 140 j#|@2002; #X obj 318 120 SMLib-help; #X obj 15 57 vmtof; #X text 10 6 midi to frequency on a vector; #X msg 15 33 69 70 81; #X obj 15 80 print vmtof; #N canvas 185 223 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Johannes Taelman ([email protected]) ; #X text 12 85 OUTLET_0 list float; #X text 12 45 DESCRIPTION midi to frequency on a vector; #X text 12 65 INLET_0 float list; #X text 12 5 KEYWORDS control list_op conversion MIDI; #X restore 329 170 pd META; #X connect 2 0 5 0; #X connect 4 0 2 0;
#N canvas 1 53 400 214 10; #X text 296 140 j#|@2002; #X obj 318 120 SMLib-help; #X obj 15 57 vmtof; #X text 10 6 midi to frequency on a vector; #X msg 15 33 69 70 81; #X obj 15 80 print vmtof; #X connect 2 0 5 0; #X connect 4 0 2 0;
18
control list_op conversion MIDI
midi to frequency on a vector
create a purr-data patch that matches the following description and keywords.
Description: midi to frequency on a vector, Keywords: control list_op conversion MIDI
biquadseries~-help.pd
externals\creb\doc\biquadseries~-help.pd
#N canvas 0 26 533 299 10; #X obj 37 246 dac~; #X msg 81 132 butterLP \$1; #X msg 173 131 butterHP \$1; #X floatatom 81 105 5 0 0 0 - - -; #X floatatom 173 104 5 0 0 0 - - -; #X obj 48 78 *~; #X floatatom 82 55 5 0 0 0 - - -; #X obj 48 35 noise~; #X text 269 132 butterworth lowpass and highpass; #X text 181 178 creation argument: number of 2nd order sections; #X obj 48 178 biquadseries~ 4; #X text 173 22 biquadseries~ second order iir series section; #N canvas 379 254 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 5 KEYWORDS signal block_oriented filter; #X text 12 45 DESCRIPTION biquadseries~ 2nd order iir series section ; #X text 12 65 INLET_0 signal butterLP butterHP; #X text 12 85 OUTLET_0 signal; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Tom Schouten <[email protected]>; #X restore 482 277 pd META; #X connect 1 0 10 0; #X connect 2 0 10 0; #X connect 3 0 1 0; #X connect 4 0 2 0; #X connect 5 0 10 0; #X connect 6 0 5 1; #X connect 7 0 5 0; #X connect 10 0 0 0; #X connect 10 0 0 1;
#N canvas 0 26 533 299 10; #X obj 37 246 dac~; #X msg 81 132 butterLP \$1; #X msg 173 131 butterHP \$1; #X floatatom 81 105 5 0 0 0 - - -; #X floatatom 173 104 5 0 0 0 - - -; #X obj 48 78 *~; #X floatatom 82 55 5 0 0 0 - - -; #X obj 48 35 noise~; #X text 269 132 butterworth lowpass and highpass; #X text 181 178 creation argument: number of 2nd order sections; #X obj 48 178 biquadseries~ 4; #X text 173 22 biquadseries~ second order iir series section; #X connect 1 0 10 0; #X connect 2 0 10 0; #X connect 3 0 1 0; #X connect 4 0 2 0; #X connect 5 0 10 0; #X connect 6 0 5 1; #X connect 7 0 5 0; #X connect 10 0 0 0; #X connect 10 0 0 1;
31
signal block_oriented filter
biquadseries~ 2nd order iir series section
create a purr-data patch that matches the following description and keywords.
Description: biquadseries~ 2nd order iir series section, Keywords: signal block_oriented filter
bfilt2-help.pd
externals\cxc\bfilt2-help.pd
#N canvas 0 31 404 226 10; #X floatatom 85 119 0 0 0 0 - - -; #X obj 57 175 print; #X floatatom 45 120 0 0 0 0 - - -; #X obj 58 146 bfilt 5; #X text 43 16 bfilt (at the moment) is: modulo something + select 0 ; #X floatatom 167 120 0 0 0 0 - - -; #X obj 139 176 print; #X floatatom 127 121 0 0 0 0 - - -; #X obj 140 147 bfilt2 5; #X obj 145 87 metro 100; #X msg 145 68 1; #X text 42 29 bfilt2: real bangfilter: bangs on first inlet \, internal counter \, only outputs every arg2th bang ...; #X msg 169 67 0; #N canvas 176 129 494 344 META 0; #X text 12 155 HELP_PATCH_AUTHORS Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION bang on first inlet \, internal counter \, only outputs ever arg2th bang; #X text 12 5 KEYWORDS control filter bang_op; #X text 12 75 INLET_0 bang float; #X text 12 95 INLET_1 float; #X text 12 25 LICENSE GPL v2; #X text 12 115 OUTLET_0 bang; #X text 12 135 AUTHOR [email protected]; #X restore 355 203 pd META; #X connect 0 0 3 1; #X connect 2 0 3 0; #X connect 3 0 1 0; #X connect 5 0 8 1; #X connect 7 0 8 0; #X connect 8 0 6 0; #X connect 9 0 8 0; #X connect 10 0 9 0; #X connect 12 0 9 0;
#N canvas 0 31 404 226 10; #X floatatom 85 119 0 0 0 0 - - -; #X obj 57 175 print; #X floatatom 45 120 0 0 0 0 - - -; #X obj 58 146 bfilt 5; #X text 43 16 bfilt (at the moment) is: modulo something + select 0 ; #X floatatom 167 120 0 0 0 0 - - -; #X obj 139 176 print; #X floatatom 127 121 0 0 0 0 - - -; #X obj 140 147 bfilt2 5; #X obj 145 87 metro 100; #X msg 145 68 1; #X text 42 29 bfilt2: real bangfilter: bangs on first inlet \, internal counter \, only outputs every arg2th bang ...; #X msg 169 67 0; #X connect 0 0 3 1; #X connect 2 0 3 0; #X connect 3 0 1 0; #X connect 5 0 8 1; #X connect 7 0 8 0; #X connect 8 0 6 0; #X connect 9 0 8 0; #X connect 10 0 9 0; #X connect 12 0 9 0;
33
control filter bang_op
bang on first inlet \, internal counter \, only outputs ever arg2th bang
create a purr-data patch that matches the following description and keywords.
Description: bang on first inlet \, internal counter \, only outputs ever arg2th bang, Keywords: control filter bang_op
2.create_new_abstract.pd
pd\doc\manuals\pd-msg\5.examples\2.create_new_abstract.pd
#N canvas 260 113 505 524 10; #X msg 77 224 msg 10 10 bang; #X msg 77 272 obj 10 40 metro 500; #X msg 77 248 floatatom 100 10 7 50 5000; #X msg 77 344 obj 10 70 random 127; #X msg 77 392 floatatom 10 100 5; #X msg 78 440 text 10 130 That's it !; #X obj 30 475 s pd-new; #X msg 77 296 connect 0 0 2 0; #X msg 77 319 connect 1 0 2 1; #X msg 77 368 connect 2 0 3 0; #X msg 77 416 connect 3 0 4 0; #X msg 40 79 \; pd filename new ./ \; #N canvas \; #X pop 1 \;; #X text 53 59 click here first; #X text 28 176 And then we fill it with the way describe in 1.add_objects.pd ; #X text 26 15 This describe how to create a new abstraction :; #X msg 290 457 menuclose; #X text 294 483 this will kill it !; #N canvas 458 158 494 396 META 0; #X text 12 85 HELP_PATCH_AUTHORS Damien Henry. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 55 DESCRIPTION creating a pd patch dynamically; #X text 12 25 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial; #X restore 448 496 pd META; #X connect 0 0 6 0; #X connect 1 0 6 0; #X connect 2 0 6 0; #X connect 3 0 6 0; #X connect 4 0 6 0; #X connect 5 0 6 0; #X connect 7 0 6 0; #X connect 8 0 6 0; #X connect 9 0 6 0; #X connect 10 0 6 0; #X connect 15 0 6 0;
#N canvas 260 113 505 524 10; #X msg 77 224 msg 10 10 bang; #X msg 77 272 obj 10 40 metro 500; #X msg 77 248 floatatom 100 10 7 50 5000; #X msg 77 344 obj 10 70 random 127; #X msg 77 392 floatatom 10 100 5; #X msg 78 440 text 10 130 That's it !; #X obj 30 475 s pd-new; #X msg 77 296 connect 0 0 2 0; #X msg 77 319 connect 1 0 2 1; #X msg 77 368 connect 2 0 3 0; #X msg 77 416 connect 3 0 4 0; #X msg 40 79 \; pd filename new ./ \; #N canvas \; #X pop 1 \;; #X text 53 59 click here first; #X text 28 176 And then we fill it with the way describe in 1.add_objects.pd ; #X text 26 15 This describe how to create a new abstraction :; #X msg 290 457 menuclose; #X text 294 483 this will kill it !; #X connect 0 0 6 0; #X connect 1 0 6 0; #X connect 2 0 6 0; #X connect 3 0 6 0; #X connect 4 0 6 0; #X connect 5 0 6 0; #X connect 7 0 6 0; #X connect 8 0 6 0; #X connect 9 0 6 0; #X connect 10 0 6 0; #X connect 15 0 6 0;
34
control canvas_op nonlocal dynamic_patching tutorial
creating a pd patch dynamically
create a purr-data patch that matches the following description and keywords.
Description: creating a pd patch dynamically, Keywords: control canvas_op nonlocal dynamic_patching tutorial
02.editing.pd
pd\doc\2.control.examples\02.editing.pd
#N canvas 432 25 448 559 10; #X msg 145 43 hello world; #X obj 145 84 print; #X floatatom 254 43 0 0 0 0 - - -; #X text 32 281 When you're done changing the contents of the box \, click outside the box to deselect it. This tells Pd to incorporate the new text.; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header editing 20 10 1 18 -261139 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 537 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 42 254 494 284 META 0; #X text 12 105 WEBSITE http://crca.ucsd.edu/~msp/; #X text 12 85 LIBRARY PDDP; #X text 12 45 LICENSE SIBSD; #X text 12 65 DESCRIPTION the basics of how to edit objects in Pd; #X text 12 125 HELP_PATCH_AUTHORS Miller Puckette. Updated for release 0.33. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 25 KEYWORDS control GUI tutorial; #X restore 382 539 pd META; #X text 32 323 Edit mode also lets you make and break connections between objects. Put the "hand" cursor over a line connecting two objects: it turns into an X. Clicking will delete the connection. Hold the cursor over an outlet and it becomes a circle (a patch point). Drag to any box and release-- you will be connected to the nearest inlet.; #X text 32 401 There are several handy tools in the "Edit" menu. You can use the "Duplicate" menu item to create new objects by duplicating existing ones. You can also "Cut" and "Paste" them. If you duplicate several connected objects the connections will be replicated too.; #X text 32 468 Also have a look in the "Put" menu-- use it to create new text items of any of the four types. You can also put a "symbol" box \, analogous to a number box but for showing and entering text strings \, as well as other objects with more sophisticated graphical user interfaces.; #N canvas 19 470 428 143 References 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261139 -33289 0; #X text 7 2 Editing- Related Help Documents; #X text 17 28 Notice that some of the menu items have shortcut keys listed beside them. Check out the one for Edit mode for a quick way to switch back and forth between Edit mode and Run mode.; #X restore 103 539 pd References; #X obj 6 539 pddp/pddplink ../5.reference/pddp/help.pd -text help; #X text 144 24 message box; #X text 252 24 atom box; #X text 33 107 When you first open a Pd document like this one \, your cursor will be an arrow. Select "Edit Mode" in the "Edit" menu and the cursor will change to the image of a hand. The patch is now in Edit mode. You can move any object by dragging it.; #X text 33 173 Select "Edit Mode" again in the "Edit" menu and you're back to the arrow cursor which acts on objects without moving them. ; #X text 33 215 In Edit Mode \, if you click on a message \, object \, or comment \, you can then retype the text. For objects this will create a new object and delete the old one. Pd will try to reconnect the newly created object in the same way as the old one.; #X text 77 51 outlet -->; #X text 188 84 <-- object; #X connect 0 0 1 0; #X connect 2 0 1 0;
#N canvas 432 25 448 559 10; #X msg 145 43 hello world; #X obj 145 84 print; #X floatatom 254 43 0 0 0 0 - - -; #X text 32 281 When you're done changing the contents of the box \, click outside the box to deselect it. This tells Pd to incorporate the new text.; #X text 32 323 Edit mode also lets you make and break connections between objects. Put the "hand" cursor over a line connecting two objects: it turns into an X. Clicking will delete the connection. Hold the cursor over an outlet and it becomes a circle (a patch point). Drag to any box and release-- you will be connected to the nearest inlet.; #X text 32 401 There are several handy tools in the "Edit" menu. You can use the "Duplicate" menu item to create new objects by duplicating existing ones. You can also "Cut" and "Paste" them. If you duplicate several connected objects the connections will be replicated too.; #X text 32 468 Also have a look in the "Put" menu-- use it to create new text items of any of the four types. You can also put a "symbol" box \, analogous to a number box but for showing and entering text strings \, as well as other objects with more sophisticated graphical user interfaces.; #X text 144 24 message box; #X text 252 24 atom box; #X text 33 107 When you first open a Pd document like this one \, your cursor will be an arrow. Select "Edit Mode" in the "Edit" menu and the cursor will change to the image of a hand. The patch is now in Edit mode. You can move any object by dragging it.; #X text 33 173 Select "Edit Mode" again in the "Edit" menu and you're back to the arrow cursor which acts on objects without moving them. ; #X text 33 215 In Edit Mode \, if you click on a message \, object \, or comment \, you can then retype the text. For objects this will create a new object and delete the old one. Pd will try to reconnect the newly created object in the same way as the old one.; #X text 77 51 outlet -->; #X text 188 84 <-- object; #X connect 0 0 1 0; #X connect 2 0 1 0;
34
control GUI tutorial
the basics of how to edit objects in Pd
create a purr-data patch that matches the following description and keywords.
Description: the basics of how to edit objects in Pd, Keywords: control GUI tutorial
scale7-help.pd
externals\creb\doc\scale7-help.pd
#N canvas 0 26 450 373 10; #N canvas 331 92 494 323 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 list; #X text 12 105 OUTLET_0 float; #X text 12 5 KEYWORDS control abstraction needs_work (example patch) ; #X text 12 45 DESCRIPTION arbitrary 7 tone scale; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR Tom Schouten <[email protected]>; #X restore 398 347 pd META; #X obj 151 152 scale7;
#N canvas 0 26 450 373 10; #X obj 151 152 scale7;
12
control abstraction needs_work (example patch)
arbitrary 7 tone scale
create a purr-data patch that matches the following description and keywords.
Description: arbitrary 7 tone scale, Keywords: control abstraction needs_work (example patch)
rgb-color-help.pd
abstractions\jmmmp\rgb-color-help.pd
#N canvas 186 367 435 338 10; #X text 12 307 Released under the BSD License; #X text 257 90 Inlets; #X text 257 150 Outlets; #X text 257 110 - Bang; #X obj 16 92 rgb-color; #X text 12 10 [rgb-color] - Pick RGB colors for your GUI objects; #X text 257 170 - "color \$1 \$2 \$3" command; #X text 257 190 - number with current color; #X text 11 287 (C) 2010 Jo�o Pais - [email protected]; #X obj 19 263 hsl 128 15 0 127 0 0 empty \$0-slider Label -2 -8 0 10 -77055 -243095 -3657 3000 1; #X obj 16 173 s \$0-slider; #X floatatom 173 173 10 0 0 0 - - -; #X text 12 30 Define the colors of your GUI object just like using the properties window. The settings of the three fields are saved in memory while using the object.; #X text 14 230 Send your color settings here:; #X text 128 205 in Pd encoding; #X text 128 192 Current color code; #N canvas 504 106 494 344 META 0; #X text 12 55 AUTHOR Jo�o Pais <[email protected]>; #X text 12 95 LICENSE BSD; #X text 12 75 LIBRARY jmmmp; #X text 13 115 WEBSITE http://puredata.info/Members/jmmmp; #X text 12 6 DESCRIPTION Pick RGB colors for your GUI objects; #X text 12 36 KEYWORDS color RGB GUI; #X text 12 135 VERSION 2010; #X text 14 165 INLET_0 - Bang; #X text 14 185 OUTLET_0 - "color \$1 \$2 \$3" command; #X text 14 205 OUTLET_1 - number with current color; #X restore 372 306 pd META; #X connect 4 0 10 0; #X connect 4 1 11 0;
#N canvas 186 367 435 338 10; #X text 12 307 Released under the BSD License; #X text 257 90 Inlets; #X text 257 150 Outlets; #X text 257 110 - Bang; #X obj 16 92 rgb-color; #X text 12 10 [rgb-color] - Pick RGB colors for your GUI objects; #X text 257 170 - "color \$1 \$2 \$3" command; #X text 257 190 - number with current color; #X text 11 287 (C) 2010 Jo�o Pais - [email protected]; #X obj 19 263 hsl 128 15 0 127 0 0 empty \$0-slider Label -2 -8 0 10 -77055 -243095 -3657 3000 1; #X obj 16 173 s \$0-slider; #X floatatom 173 173 10 0 0 0 - - -; #X text 12 30 Define the colors of your GUI object just like using the properties window. The settings of the three fields are saved in memory while using the object.; #X text 14 230 Send your color settings here:; #X text 128 205 in Pd encoding; #X text 128 192 Current color code; #X connect 4 0 10 0; #X connect 4 1 11 0;
31
color RGB GUI
Pick RGB colors for your GUI objects
create a purr-data patch that matches the following description and keywords.
Description: Pick RGB colors for your GUI objects, Keywords: color RGB GUI
sample_record~-help.pd
externals\tof\tof\sample_record~-help.pd
#N canvas 1 53 766 482 10; #X text 227 253 Argument 1 \, symbol: the name of the sample to record to; #X text 44 4 Description: Records into samples; #X text 41 21 Tags: Sound Sample Record; #X obj 65 198 adc~; #X obj 206 176 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X text 239 44 A 10 second mono sample (at a samplerate of 44100); #X obj 75 331 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 74 416 dac~; #X obj 104 332 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X msg 225 215 sample recording; #X text 57 126 Inlet 1 \, signal: left or mono channel audio data; #X text 56 141 Inlet 2 \, signal: right channel audio data; #X text 332 213 Inlet 3 \, sample symbol: set the sample; #X text 231 171 Inlet 3 \, float: turn recording on/off. The maximum recording length is limited by the size of the sample; #X text 130 329 Play or loop the recording; #X obj 242 66 tof/sample recording 441000 1; #X obj 65 253 sample_record~ recording; #X obj 75 373 tof/sample_play~ recording; #N canvas 371 286 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 LICENSE GPL v2; #X text 12 125 AUTHOR Thomas Ouellet Fredericks; #X text 12 25 DESCRIPTION record into samples; #X text 12 5 KEYWORDS control abstraction array soundfile; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 105 INLET_2 float sample; #X restore 705 427 pd META; #X connect 3 0 16 0; #X connect 4 0 16 2; #X connect 6 0 17 0; #X connect 8 0 17 0; #X connect 9 0 16 2; #X connect 17 0 7 0; #X connect 17 1 7 1;
#N canvas 1 53 766 482 10; #X text 227 253 Argument 1 \, symbol: the name of the sample to record to; #X text 44 4 Description: Records into samples; #X text 41 21 Tags: Sound Sample Record; #X obj 65 198 adc~; #X obj 206 176 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X text 239 44 A 10 second mono sample (at a samplerate of 44100); #X obj 75 331 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 74 416 dac~; #X obj 104 332 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1; #X msg 225 215 sample recording; #X text 57 126 Inlet 1 \, signal: left or mono channel audio data; #X text 56 141 Inlet 2 \, signal: right channel audio data; #X text 332 213 Inlet 3 \, sample symbol: set the sample; #X text 231 171 Inlet 3 \, float: turn recording on/off. The maximum recording length is limited by the size of the sample; #X text 130 329 Play or loop the recording; #X obj 242 66 tof/sample recording 441000 1; #X obj 65 253 sample_record~ recording; #X obj 75 373 tof/sample_play~ recording; #X connect 3 0 16 0; #X connect 4 0 16 2; #X connect 6 0 17 0; #X connect 8 0 17 0; #X connect 9 0 16 2; #X connect 17 0 7 0; #X connect 17 1 7 1;
36
control abstraction array soundfile
record into samples
create a purr-data patch that matches the following description and keywords.
Description: record into samples, Keywords: control abstraction array soundfile
poisson-help.pd
externals\maxlib\poisson-help.pd
#N canvas 0 26 467 278 12; #X obj 70 95 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 70 192 5 0 0 0 - - -; #X floatatom 193 112 5 0 0 0 - - -; #X text 39 21 poisson :: Poisson distributed random numbers; #X obj 70 145 poisson 2.2; #X text 246 113 lambda - value that is most; #X text 317 132 likely to appear; #N canvas 295 203 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR Olaf Matthes <[email protected]>; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 float; #X text 12 45 DESCRIPTION Poisson distributed random numbers; #X text 12 65 INLET_0 bang; #X text 12 5 KEYWORDS control random; #X restore 404 248 pd META; #X connect 0 0 4 0; #X connect 2 0 4 1; #X connect 4 0 1 0;
#N canvas 0 26 467 278 12; #X obj 70 95 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 70 192 5 0 0 0 - - -; #X floatatom 193 112 5 0 0 0 - - -; #X text 39 21 poisson :: Poisson distributed random numbers; #X obj 70 145 poisson 2.2; #X text 246 113 lambda - value that is most; #X text 317 132 likely to appear; #X connect 0 0 4 0; #X connect 2 0 4 1; #X connect 4 0 1 0;
21
control random
Poisson distributed random numbers
create a purr-data patch that matches the following description and keywords.
Description: Poisson distributed random numbers, Keywords: control random
divmod-help.pd
externals\maxlib\divmod-help.pd
#N canvas 0 26 464 316 12; #X floatatom 54 239 5 0 0 0 - - -; #X floatatom 54 127 5 0 0 0 - - -; #X floatatom 129 127 5 0 0 0 - - -; #X obj 54 172 divmod 8 6; #X text 146 170 use creation arguments to set initial; #X text 146 186 values for inlets; #X msg 23 83 bang; #X text 69 82 calculate and output result now; #X floatatom 129 219 5 0 0 0 - - -; #X text 182 222 modulo; #X text 106 242 result of division; #X text 186 127 takes int's only!; #X text 12 19 divmod :: calculate division and modulo; #X text 92 35 outputs results even when right inlet changes; #N canvas 293 158 494 344 META 0; #X text 12 175 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 155 AUTHOR Olaf Matthes <[email protected]>; #X text 12 5 KEYWORDS control nonlocal; #X text 12 75 INLET_0 bang float; #X text 12 95 INLET_1 float; #X text 12 115 OUTLET_0 float; #X text 12 45 DESCRIPTION calculate division and modulo outputs results even when right inlet changes; #X text 12 135 OUTLET_1 float; #X restore 395 283 pd META; #X connect 1 0 3 0; #X connect 2 0 3 1; #X connect 3 0 0 0; #X connect 3 1 8 0; #X connect 6 0 3 0;
#N canvas 0 26 464 316 12; #X floatatom 54 239 5 0 0 0 - - -; #X floatatom 54 127 5 0 0 0 - - -; #X floatatom 129 127 5 0 0 0 - - -; #X obj 54 172 divmod 8 6; #X text 146 170 use creation arguments to set initial; #X text 146 186 values for inlets; #X msg 23 83 bang; #X text 69 82 calculate and output result now; #X floatatom 129 219 5 0 0 0 - - -; #X text 182 222 modulo; #X text 106 242 result of division; #X text 186 127 takes int's only!; #X text 12 19 divmod :: calculate division and modulo; #X text 92 35 outputs results even when right inlet changes; #X connect 1 0 3 0; #X connect 2 0 3 1; #X connect 3 0 0 0; #X connect 3 1 8 0; #X connect 6 0 3 0;
31
control nonlocal
calculate division and modulo outputs results even when right inlet changes
create a purr-data patch that matches the following description and keywords.
Description: calculate division and modulo outputs results even when right inlet changes, Keywords: control nonlocal
nchange-help.pd
externals\maxlib\nchange-help.pd
#N canvas 0 26 519 345 12; #X obj 30 213 nchange f; #X obj 371 215 nchange l; #X msg 367 144 bla foo dog; #X msg 387 169 bla foo 23; #X msg 348 121 bla foo dog 17; #X obj 200 214 nchange s; #X obj 200 185 symbol; #X msg 200 126 dog; #X msg 216 153 cat; #X obj 162 15 change; #X obj 371 253 print list; #X obj 200 255 print symbol; #X msg 30 152 0; #X msg 43 180 1; #X obj 30 257 print float; #X text 100 34 written by Olaf Matthes <[email protected]>; #X text 12 15 nchange :: a 'new'; #X text 22 77 The creation argument specifies whether nchange works for floats \, symbols or lists.; #N canvas 518 27 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Olaf Matthes <[email protected]>; #X text 12 45 DESCRIPTION change for floats \, symbols \, and lists ; #X text 12 5 KEYWORDS control anything_op symbol_op; #X text 12 65 INLET_0 anything; #X text 12 85 OUTLET_0 anything; #X restore 456 317 pd META; #X connect 0 0 14 0; #X connect 1 0 10 0; #X connect 2 0 1 0; #X connect 3 0 1 0; #X connect 4 0 1 0; #X connect 5 0 11 0; #X connect 6 0 5 0; #X connect 7 0 6 0; #X connect 8 0 6 0; #X connect 12 0 0 0; #X connect 13 0 0 0;
#N canvas 0 26 519 345 12; #X obj 30 213 nchange f; #X obj 371 215 nchange l; #X msg 367 144 bla foo dog; #X msg 387 169 bla foo 23; #X msg 348 121 bla foo dog 17; #X obj 200 214 nchange s; #X obj 200 185 symbol; #X msg 200 126 dog; #X msg 216 153 cat; #X obj 162 15 change; #X obj 371 253 print list; #X obj 200 255 print symbol; #X msg 30 152 0; #X msg 43 180 1; #X obj 30 257 print float; #X text 100 34 written by Olaf Matthes <[email protected]>; #X text 12 15 nchange :: a 'new'; #X text 22 77 The creation argument specifies whether nchange works for floats \, symbols or lists.; #X connect 0 0 14 0; #X connect 1 0 10 0; #X connect 2 0 1 0; #X connect 3 0 1 0; #X connect 4 0 1 0; #X connect 5 0 11 0; #X connect 6 0 5 0; #X connect 7 0 6 0; #X connect 8 0 6 0; #X connect 12 0 0 0; #X connect 13 0 0 0;
39
control anything_op symbol_op
change for floats \, symbols \, and lists
create a purr-data patch that matches the following description and keywords.
Description: change for floats \, symbols \, and lists, Keywords: control anything_op symbol_op
all_about_externals.pd
packages\win64_inno\build\doc\5.reference\all_about_externals.pd
#N canvas 431 60 446 395 10; #X obj 1 -2 cnv 15 445 20 empty \$0-pddp.cnv.header externals 20 12 1 18 -261106 -33289 0; #X obj 412 -2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 373 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 383 261 494 145 META 0; #X text 12 85 HELP_PATCH_AUTHORS Dave Sabine \, May 5 \, 2003 . Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 65 LIBRARY PDDP; #X text 12 45 DESCRIPTION notions of scope in Pd; #X text 12 25 KEYWORDS needs_work all_about_pd; #X restore 397 375 pd META; #N canvas 221 288 428 121 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 Externals - Related Objects; #X restore 103 375 pd Related_objects; #X obj 6 375 pddp/pddplink all_about.pd -text All About Pd; #X text 20 36 Externals are objects that can be used in addition to the core Pd objects \, or vanilla objects. Externals can be created with other programming languages like C \, C++ \, or Python \, as well as being programmed directly in Pd.; #X obj 59 347 pddp/pddplink all_about_libraries.pd; #N canvas 16 214 428 369 Subpatch 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 20 10 1 18 -261106 -33289 0; #X text 7 1 Subpatch; #X text 18 23 Subpatch; #X restore 23 164 pd Subpatch; #X text 20 116 This help file is unfinished;
#N canvas 431 60 446 395 10; #X obj 1 -2 cnv 15 445 20 empty \$0-pddp.cnv.header externals 20 12 1 18 -261106 -33289 0; #X obj 412 -2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 20 36 Externals are objects that can be used in addition to the core Pd objects \, or vanilla objects. Externals can be created with other programming languages like C \, C++ \, or Python \, as well as being programmed directly in Pd.; #X text 20 116 This help file is unfinished;
23
needs_work all_about_pd
notions of scope in Pd
create a purr-data patch that matches the following description and keywords.
Description: notions of scope in Pd, Keywords: needs_work all_about_pd
threshold-help.pd
externals\mapping\threshold-help.pd
#N canvas 1 53 600 234 10; #X floatatom 25 34 5 0 0 0 - - -; #X floatatom 25 124 5 0 0 0 - - -; #X floatatom 90 63 5 0 0 0 - - -; #X text 111 174 (usefull to reduce the flow controling pd event...) ; #X obj 25 84 threshold 0.2; #N canvas 465 169 494 344 META 0; #X text 12 175 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 115 OUTLET_0 float; #X text 12 155 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION output a new value only if the difference between the input and last output is greater than \$1; #X text 12 75 INLET_0 float; #X text 12 95 INLET_1 float; #X text 12 135 OUTLET_1 float; #X restore 543 206 pd META; #X text 107 131 output a new value only if the difference between the input and last output is greater than \$1; #X connect 0 0 4 0; #X connect 4 0 1 0;
#N canvas 1 53 600 234 10; #X floatatom 25 34 5 0 0 0 - - -; #X floatatom 25 124 5 0 0 0 - - -; #X floatatom 90 63 5 0 0 0 - - -; #X text 111 174 (usefull to reduce the flow controling pd event...) ; #X obj 25 84 threshold 0.2; #X text 107 131 output a new value only if the difference between the input and last output is greater than \$1; #X connect 0 0 4 0; #X connect 4 0 1 0;
20
control abstraction
output a new value only if the difference between the input and last output is greater than \$1
create a purr-data patch that matches the following description and keywords.
Description: output a new value only if the difference between the input and last output is greater than \$1, Keywords: control abstraction
gpan~-help.pd
externals\pan\gpan~-help.pd
#N canvas 0 31 470 338 10; #X obj 77 187 gpan~; #X obj 54 155 osc~ 300; #X obj 114 155 osc~ 400; #X obj 129 246 dac~; #X obj 5 2 cnv 15 450 20 empty empty gpan~ 2 11 1 18 -233017 -66577 0; #X msg 422 3 pddp; #X msg 190 101 0; #X msg 239 101 0.5; #X msg 284 101 1; #X text 18 43 A stereo pan object with a built-in slider to control and display the status.; #X text 188 86 left; #X text 229 86 center; #X text 283 86 right; #X obj 361 203 tgl 25 0 empty empty DSP 3 12 1 9 -24198 -1 -1 0 1; #X msg 361 235 \; pd dsp \$1; #X text 201 299 released under the GNU GPL; #X text 37 284 (C) Copyright 2003 Marc Lavalee; #N canvas 459 31 494 344 META 0; #X text 12 195 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL; #X text 12 175 AUTHOR Hans-Christoph Steiner; #X text 12 75 INLET_0 signal; #X text 12 135 OUTLET_0 signal; #X text 12 155 OUTLET_1 signal; #X text 12 115 INLET_2 float; #X text 12 5 KEYWORDS signal abstraction GUI; #X text 12 45 DESCRIPTION a stereo pan object with a built-in slider to control and display the status; #X text 12 95 INLET_1 signal; #X restore 413 309 pd META; #X connect 0 0 3 0; #X connect 0 1 3 1; #X connect 1 0 0 0; #X connect 2 0 0 1; #X connect 6 0 0 2; #X connect 7 0 0 2; #X connect 8 0 0 2; #X connect 13 0 14 0;
#N canvas 0 31 470 338 10; #X obj 77 187 gpan~; #X obj 54 155 osc~ 300; #X obj 114 155 osc~ 400; #X obj 129 246 dac~; #X msg 422 3 pddp; #X msg 190 101 0; #X msg 239 101 0.5; #X msg 284 101 1; #X text 18 43 A stereo pan object with a built-in slider to control and display the status.; #X text 188 86 left; #X text 229 86 center; #X text 283 86 right; #X obj 361 203 tgl 25 0 empty empty DSP 3 12 1 9 -24198 -1 -1 0 1; #X msg 361 235 \; pd dsp \$1; #X text 201 299 released under the GNU GPL; #X text 37 284 (C) Copyright 2003 Marc Lavalee; #X connect 0 0 3 0; #X connect 0 1 3 1; #X connect 1 0 0 0; #X connect 2 0 0 1; #X connect 6 0 0 2; #X connect 7 0 0 2; #X connect 8 0 0 2; #X connect 13 0 14 0;
38
signal abstraction GUI
a stereo pan object with a built-in slider to control and display the status
create a purr-data patch that matches the following description and keywords.
Description: a stereo pan object with a built-in slider to control and display the status, Keywords: signal abstraction GUI
velocity-help.pd
externals\maxlib\velocity-help.pd
#N canvas 0 26 454 244 12; #X text 30 16 velocity :: get velocity of digits per second; #X obj 50 137 velocity; #X floatatom 50 72 5 0 0 0 - - -; #X floatatom 50 187 8 0 0 0 - - -; #X text 150 77 sending a float every second would; #X text 151 95 result in a velocity of 1 \, higher; #X text 151 114 rates produce higher velocities; #X msg 65 102 bang; #X text 151 148 originally written for Max by; #X text 151 164 Trond Lossius \, BEK; #N canvas 293 158 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Olaf Matthes <[email protected]>; #X text 12 5 KEYWORDS control random; #X text 12 85 OUTLET_0 float; #X text 12 45 DESCRIPTION get velocity of digits per second; #X text 12 65 INLET_0 bang float; #X restore 390 214 pd META; #X connect 1 0 3 0; #X connect 2 0 1 0; #X connect 7 0 1 0;
#N canvas 0 26 454 244 12; #X text 30 16 velocity :: get velocity of digits per second; #X obj 50 137 velocity; #X floatatom 50 72 5 0 0 0 - - -; #X floatatom 50 187 8 0 0 0 - - -; #X text 150 77 sending a float every second would; #X text 151 95 result in a velocity of 1 \, higher; #X text 151 114 rates produce higher velocities; #X msg 65 102 bang; #X text 151 148 originally written for Max by; #X text 151 164 Trond Lossius \, BEK; #X connect 1 0 3 0; #X connect 2 0 1 0; #X connect 7 0 1 0;
23
control random
get velocity of digits per second
create a purr-data patch that matches the following description and keywords.
Description: get velocity of digits per second, Keywords: control random
A05.output.subpatch.pd
packages\win64_inno\build\doc\3.audio.examples\A05.output.subpatch.pd
#N canvas 434 58 448 436 10; #X obj 22 42 osc~ 440; #X obj 37 70 osc~ 550; #X obj 38 131 osc~ 660; #X obj 22 103 +~; #X obj 22 157 +~; #X text 103 188 <-- this is a subwindow--right click on it; #X text 144 203 and select "open" to see inside.; #X text 18 359 The output control automatically starts DSP whenever you touch the level control. Hitting "mute" toggles between the current level and zero.; #X obj 22 188 output~; #X text 97 131 <-- Here we make an A major triad as a test signal. ; #X text 19 248 In this and subsequent patches \, we'll use a subwindow \, "output" \, to control overall amplitude. The amplitudes are in decibels \, with 100 being full blast. In this example \, you can't actually push the output amplitude past 90 or so without clipping. You'll know you're clipping if \, instead of an A major chord \, you hear a single \, distorted tone two octaves down. The clipping happens at Pd's last stage of audio output. Audio signals internal to Pd have essentially no level limit.; #X obj 1 414 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 44 246 494 284 META 0; #X text 12 105 WEBSITE http://crca.ucsd.edu/~msp/; #X text 12 85 AUTHOR Miller Puckette; #X text 12 65 LIBRARY PDDP; #X text 12 25 LICENSE SIBSD; #X text 12 125 HELP_PATCH_AUTHORS Updated for release 0.36. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION controlling output amplitude; #X text 12 5 KEYWORDS signal GUI tutorial; #X restore 392 416 pd META; #N canvas 13 202 428 190 References 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261139 -33289 0; #X text 7 2 controlling output amplitude- Related Help Documents; #X text 19 37 List other amplitude GUIs here; #X restore 103 416 pd References; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header controlling_output_amplitude 20 10 1 18 -261139 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 6 416 pddp/pddplink ../5.reference/pddp/help.pd -text help; #X connect 0 0 3 0; #X connect 1 0 3 1; #X connect 2 0 4 1; #X connect 3 0 4 0; #X connect 4 0 8 0; #X connect 4 0 8 1;
#N canvas 434 58 448 436 10; #X obj 22 42 osc~ 440; #X obj 37 70 osc~ 550; #X obj 38 131 osc~ 660; #X obj 22 103 +~; #X obj 22 157 +~; #X text 103 188 <-- this is a subwindow--right click on it; #X text 144 203 and select "open" to see inside.; #X text 18 359 The output control automatically starts DSP whenever you touch the level control. Hitting "mute" toggles between the current level and zero.; #X obj 22 188 output~; #X text 97 131 <-- Here we make an A major triad as a test signal. ; #X text 19 248 In this and subsequent patches \, we'll use a subwindow \, "output" \, to control overall amplitude. The amplitudes are in decibels \, with 100 being full blast. In this example \, you can't actually push the output amplitude past 90 or so without clipping. You'll know you're clipping if \, instead of an A major chord \, you hear a single \, distorted tone two octaves down. The clipping happens at Pd's last stage of audio output. Audio signals internal to Pd have essentially no level limit.; #X connect 0 0 3 0; #X connect 1 0 3 1; #X connect 2 0 4 1; #X connect 3 0 4 0; #X connect 4 0 8 0; #X connect 4 0 8 1;
36
signal GUI tutorial
controlling output amplitude
create a purr-data patch that matches the following description and keywords.
Description: controlling output amplitude, Keywords: signal GUI tutorial
ardourjack-gui-help.pd
abstractions\jmmmp\ardourjack-gui-help.pd
#N canvas 436 287 450 300 10; #X obj 165 118 ardourjack-gui; #N canvas 49 336 494 344 META 0; #X text 12 55 AUTHOR Jo�o Pais <[email protected]>; #X text 12 95 LICENSE BSD; #X text 12 75 LIBRARY jmmmp; #X text 12 5 DESCRIPTION Controls ardour transport and jack settings from Pd; #X text 12 35 KEYWORDS ardour jack transport; #X text 12 135 VERSION 09.05.2013; #X text 13 115 WEBSITE http://puredata.info/Members/jmmmp; #X restore 392 276 pd META; #X text 70 40 Controls ardour transport and jack settings from Pd;
#N canvas 436 287 450 300 10; #X obj 165 118 ardourjack-gui; #X text 70 40 Controls ardour transport and jack settings from Pd;
12
ardour jack transport
Controls ardour transport and jack settings from Pd
create a purr-data patch that matches the following description and keywords.
Description: Controls ardour transport and jack settings from Pd, Keywords: ardour jack transport
niagara-help.pd
externals\zexy\reference\niagara-help.pd
#N canvas 0 31 707 337 10; #X floatatom 86 178 0 0 0 0 - - -; #X obj 29 206 niagara 12; #X obj 29 288 print LEFT; #X obj 86 263 print RIGHT; #X msg 29 100 1 2 3 4 5 6 7 all good children go to heaven; #X obj 119 25 niagara; #X text 201 53 creation : "niagara <n>" creates a niagara-fall with a rock at point <n>; #X text 116 178 where to divide; #X text 290 219 note :; #X text 337 233 if <anything> is passed \, then 2 <anything>s appear at the outputs; #X text 337 219 if a <list> is passed \, then 2 <list>s appear at the outputs; #X msg 50 122 some water will go down on the left side of the rock and the rest will come down on the other side; #X text 318 100 a list; #X text 412 131 not a list \, but works too; #X text 589 12 part of zexy; #N canvas 460 154 494 344 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR IOhannes m zmoelnig; #X text 12 105 OUTLET_0 anything; #X text 12 45 DESCRIPTION divide a package into 2 sub-packages; #X text 12 5 KEYWORDS control anything_op; #X text 12 65 INLET_0 anything; #X text 12 85 INLET_1 float; #X text 12 125 OUTLET_1 anything; #X restore 648 306 pd META; #X text 334 28 divide a package into 2 sub-packages; #X connect 0 0 1 1; #X connect 1 0 2 0; #X connect 1 1 3 0; #X connect 4 0 1 0; #X connect 11 0 1 0;
#N canvas 0 31 707 337 10; #X floatatom 86 178 0 0 0 0 - - -; #X obj 29 206 niagara 12; #X obj 29 288 print LEFT; #X obj 86 263 print RIGHT; #X msg 29 100 1 2 3 4 5 6 7 all good children go to heaven; #X obj 119 25 niagara; #X text 201 53 creation : "niagara <n>" creates a niagara-fall with a rock at point <n>; #X text 116 178 where to divide; #X text 290 219 note :; #X text 337 233 if <anything> is passed \, then 2 <anything>s appear at the outputs; #X text 337 219 if a <list> is passed \, then 2 <list>s appear at the outputs; #X msg 50 122 some water will go down on the left side of the rock and the rest will come down on the other side; #X text 318 100 a list; #X text 412 131 not a list \, but works too; #X text 589 12 part of zexy; #X text 334 28 divide a package into 2 sub-packages; #X connect 0 0 1 1; #X connect 1 0 2 0; #X connect 1 1 3 0; #X connect 4 0 1 0; #X connect 11 0 1 0;
33
control anything_op
divide a package into 2 sub-packages
create a purr-data patch that matches the following description and keywords.
Description: divide a package into 2 sub-packages, Keywords: control anything_op
ucmod~-help.pd
externals\creb\doc\ucmod~-help.pd
#N canvas 0 0 404 300 10; #X text 84 18 unit circle modulator. (1+r conj(z)/(1+rz); #N canvas 331 92 494 366 META 0; #X text 12 185 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 145 OUTLET_1 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 45 DESCRIPTION unit circle modulator; #X text 12 105 INLET_2 signal; #X text 12 125 OUTLET_0 signal; #X text 12 25 LICENSE GPL v2; #X text 12 165 AUTHOR Tom Schouten <[email protected]>; #X restore 352 275 pd META; #X obj 95 121 ucmod~;
#N canvas 0 0 404 300 10; #X text 84 18 unit circle modulator. (1+r conj(z)/(1+rz); #X obj 95 121 ucmod~;
15
signal abstraction needs_work (example patch)
unit circle modulator
create a purr-data patch that matches the following description and keywords.
Description: unit circle modulator, Keywords: signal abstraction needs_work (example patch)
asinh-help.pd
externals\miXed\doc\help\cyclone\asinh-help.pd
#N canvas 0 31 613 320 10; #X text 254 93 this is probably only useful for mathematical calculations ; #X obj 18 90 cycle~ 2; #X obj 18 121 *~ 3.14159; #X msg 223 149 range -2 2; #X obj 150 123 -~ 3.14159; #X text 15 35 Arc Hyperbolic sine function (asinh(x)) for signals; #X obj 150 100 *~ 6.28319; #X obj 150 78 phasor~ 2; #X obj 18 175 Scope~ 130 130 256 3 128 -1 1 0 0 0 0 102 255 51 135 135 135 0; #X obj 165 180 Scope~ 130 130 256 3 128 -1 1 0 0 0 0 102 255 51 135 135 135 0; #X obj 18 147 asinh~; #X obj 149 147 asinh~; #N canvas 430 169 507 362 META 0; #X text 12 175 HELP_PATCH_AUTHORS Christoph Kummerer. Revised by Jonathan Wilkes for Pd-extended 0.42 to conform to the PDDP template.; #X text 12 25 LICENSE; #X text 12 135 WEBSITE http://suita.chopin.edu.pl/~czaja/miXed/externs/cyclone.html ; #X text 12 5 KEYWORDS signal max_compatible trigonometry; #X text 12 45 DESCRIPTION arc hyperbolic sine function (asinh(x)) for signals; #X text 12 75 INLET_0 signal; #X text 12 95 OUTLET_0 signal; #X text 12 115 AUTHOR Krzysztof Czaja; #X restore 557 294 pd META; #X connect 1 0 2 0; #X connect 2 0 10 0; #X connect 3 0 8 0; #X connect 3 0 9 0; #X connect 4 0 11 0; #X connect 6 0 4 0; #X connect 7 0 6 0; #X connect 10 0 8 0; #X connect 11 0 9 0;
#N canvas 0 31 613 320 10; #X text 254 93 this is probably only useful for mathematical calculations ; #X obj 18 90 cycle~ 2; #X obj 18 121 *~ 3.14159; #X msg 223 149 range -2 2; #X obj 150 123 -~ 3.14159; #X text 15 35 Arc Hyperbolic sine function (asinh(x)) for signals; #X obj 150 100 *~ 6.28319; #X obj 150 78 phasor~ 2; #X obj 18 175 Scope~ 130 130 256 3 128 -1 1 0 0 0 0 102 255 51 135 135 135 0; #X obj 165 180 Scope~ 130 130 256 3 128 -1 1 0 0 0 0 102 255 51 135 135 135 0; #X obj 18 147 asinh~; #X obj 149 147 asinh~; #X connect 1 0 2 0; #X connect 2 0 10 0; #X connect 3 0 8 0; #X connect 3 0 9 0; #X connect 4 0 11 0; #X connect 6 0 4 0; #X connect 7 0 6 0; #X connect 10 0 8 0; #X connect 11 0 9 0;
32
signal max_compatible trigonometry
arc hyperbolic sine function (asinh(x)) for signals
create a purr-data patch that matches the following description and keywords.
Description: arc hyperbolic sine function (asinh(x)) for signals, Keywords: signal max_compatible trigonometry
screensize-help.pd
externals\hcs\screensize-help.pd
#N canvas 327 254 372 243 10; #X msg 184 101 bang; #X floatatom 184 170 5 0 0 0 width - -, f 5; #X floatatom 241 170 5 0 0 1 height - -, f 5; #X text 111 47 get the current screen resolution; #X obj 184 138 screensize; #N canvas 281 200 494 344 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 LICENSE GPL v3; #X text 12 145 AUTHOR Hans-Christoph Steiner; #X text 12 65 DESCRIPTION get the current screen resolution; #X text 12 85 INLET_0 bang; #X text 12 105 OUTLET_0 float; #X text 12 125 OUTLET_1 float; #X text 12 25 KEYWORDS control filesystem; #X restore 323 223 pd META; #X connect 0 0 4 0; #X connect 4 0 1 0; #X connect 4 1 2 0;
#N canvas 327 254 372 243 10; #X msg 184 101 bang; #X floatatom 184 170 5 0 0 0 width - -, f 5; #X floatatom 241 170 5 0 0 1 height - -, f 5; #X text 111 47 get the current screen resolution; #X obj 184 138 screensize; #X connect 0 0 4 0; #X connect 4 0 1 0; #X connect 4 1 2 0;
19
control filesystem
get the current screen resolution
create a purr-data patch that matches the following description and keywords.
Description: get the current screen resolution, Keywords: control filesystem
all_about_submitting_bugs.pd
pd\doc\5.reference\all_about_submitting_bugs.pd
#N canvas 429 58 448 245 10; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header submitting_bugs 20 10 1 18 -261106 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 223 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 370 97 494 183 META 0; #X text 12 100 HELP_PATCH_AUTHORS Dave Sabine \, May 5 \, 2003 . Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 80 LIBRARY PDDP; #X text 12 45 DESCRIPTION prerequisites for submitting a bug on Sourceforge ; #X text 12 25 KEYWORDS needs_work all_about_pd; #X restore 392 225 pd META; #N canvas 215 136 428 117 Related_objects 0; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 All About Submitting Bugs- Related Objects; #X obj 22 42 print; #X text 19 70 Also \, have a look in the "Find" Menu for the entry "Find last error."; #X restore 103 225 pd Related_objects; #X obj 6 225 pddp/pddplink all_about.pd -text All About Pd; #X text 20 62 1) Make sure you can reproduce the bug consistently. Include a brief example patch to demonstrate the bug \, using the minimum number of objects needed to reproduce it.; #X obj 83 194 pddplink http://sourceforge.net/tracker/?func=add&group_id=55736&atid=478070 -text Beam me up to the Sourceforge bug tracker...; #X text 20 32 0) Search the Sourceforge bug tracker to make sure the bug hasn't already been reported (click "Browse" to search).; #X text 20 106 2) Make a note of the operating system (and OS version) you are using \, as well as any hardware that might be relevant to the bug (sound card \, camera \, etc).; #X text 20 149 3) Specify the version of Pd you are using. You can find it under the "Help" menu by choosing "About Pd".;
#N canvas 429 58 448 245 10; #X text 20 62 1) Make sure you can reproduce the bug consistently. Include a brief example patch to demonstrate the bug \, using the minimum number of objects needed to reproduce it.; #X obj 83 194 pddplink http://sourceforge.net/tracker/?func=add&group_id=55736&atid=478070 -text Beam me up to the Sourceforge bug tracker...; #X text 20 32 0) Search the Sourceforge bug tracker to make sure the bug hasn't already been reported (click "Browse" to search).; #X text 20 106 2) Make a note of the operating system (and OS version) you are using \, as well as any hardware that might be relevant to the bug (sound card \, camera \, etc).; #X text 20 149 3) Specify the version of Pd you are using. You can find it under the "Help" menu by choosing "About Pd".;
22
needs_work all_about_pd
prerequisites for submitting a bug on Sourceforge
create a purr-data patch that matches the following description and keywords.
Description: prerequisites for submitting a bug on Sourceforge, Keywords: needs_work all_about_pd
curve_draw-help.pd
externals\mapping\curve_draw-help.pd
#N canvas 1 53 394 367 10; #X floatatom 33 119 5 -1 1 0 - - -; #X floatatom 34 280 9 0 0 0 - - -; #X obj 34 144 curve_draw test 100; #X text 125 15 draw the in / out relation; #X text 31 51 arg 1 : name of the file to save the curve; #X text 31 64 arg 2 : size of the table; #X text 85 125 input (0 to 1); #X text 107 277 out (0 to 1); #X text 50 320 The mapping curve is symetric. i.e f(-x)=-f(x); #N canvas 465 169 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 85 OUTLET_0 float; #X text 12 105 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 65 INLET_0 float; #X text 12 5 KEYWORDS control abstraction GUI; #X text 12 45 DESCRIPTION draw the in / out relation; #X restore 355 338 pd META; #X connect 0 0 2 0; #X connect 2 0 1 0;
#N canvas 1 53 394 367 10; #X floatatom 33 119 5 -1 1 0 - - -; #X floatatom 34 280 9 0 0 0 - - -; #X obj 34 144 curve_draw test 100; #X text 125 15 draw the in / out relation; #X text 31 51 arg 1 : name of the file to save the curve; #X text 31 64 arg 2 : size of the table; #X text 85 125 input (0 to 1); #X text 107 277 out (0 to 1); #X text 50 320 The mapping curve is symetric. i.e f(-x)=-f(x); #X connect 0 0 2 0; #X connect 2 0 1 0;
21
control abstraction GUI
draw the in / out relation
create a purr-data patch that matches the following description and keywords.
Description: draw the in / out relation, Keywords: control abstraction GUI
test_n-help.pd
externals\mapping\test_n-help.pd
#N canvas 1 53 467 373 10; #X floatatom 222 280 5 0 0 0 - - -; #X floatatom 150 329 5 0 0 0 - - -; #X msg 150 245 0; #X msg 181 245 1; #X text 268 277 size: n; #X text 19 25 sends a 1 if the last n values are equal to the first argument; #X floatatom 137 194 5 0 0 0 - - -; #X msg 137 110 word; #X msg 175 110 not-word; #X msg 120 245 2; #X text 13 72 click [word( five times in a row and you will get a 1 (5 is the default for how many \, aka "n"); #X text 25 220 click [2( three times in a row and you will get a 1 ; #X obj 137 168 test_n word; #X obj 150 303 test_n 2 3; #X obj 5 2 cnv 15 450 20 empty empty test_n 2 11 1 18 -233017 -66577 0; #N canvas 464 140 494 344 META 0; #X text 12 175 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 135 OUTLET_0 float; #X text 12 155 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION send a 1 if the last n values are equal to the first argument; #X text 12 75 INLET_0 anything; #X text 12 95 INLET_1 anything; #X text 12 115 INLET_2 float; #X restore 405 338 pd META; #X connect 0 0 13 2; #X connect 2 0 13 0; #X connect 3 0 13 0; #X connect 7 0 12 0; #X connect 8 0 12 0; #X connect 9 0 13 0; #X connect 12 0 6 0; #X connect 13 0 1 0;
#N canvas 1 53 467 373 10; #X floatatom 222 280 5 0 0 0 - - -; #X floatatom 150 329 5 0 0 0 - - -; #X msg 150 245 0; #X msg 181 245 1; #X text 268 277 size: n; #X text 19 25 sends a 1 if the last n values are equal to the first argument; #X floatatom 137 194 5 0 0 0 - - -; #X msg 137 110 word; #X msg 175 110 not-word; #X msg 120 245 2; #X text 13 72 click [word( five times in a row and you will get a 1 (5 is the default for how many \, aka "n"); #X text 25 220 click [2( three times in a row and you will get a 1 ; #X obj 137 168 test_n word; #X obj 150 303 test_n 2 3; #X connect 0 0 13 2; #X connect 2 0 13 0; #X connect 3 0 13 0; #X connect 7 0 12 0; #X connect 8 0 12 0; #X connect 9 0 13 0; #X connect 12 0 6 0; #X connect 13 0 1 0;
35
control abstraction
send a 1 if the last n values are equal to the first argument
create a purr-data patch that matches the following description and keywords.
Description: send a 1 if the last n values are equal to the first argument, Keywords: control abstraction
snaps~-help.pd
abstractions\jmmmp\snaps~-help.pd
#N canvas 125 122 408 275 10; #X text 12 227 (C) 2006 Jo�o Pais - [email protected]; #X text 12 247 Released under the BSD License; #X text 276 100 Inlets; #X text 276 170 Outlets; #X text 276 50 Arguments; #X msg 136 66 500; #X text 175 75 Velocity (ms); #X floatatom 26 147 5 0 0 0 - - -; #X obj 26 107 osc~ 0.5; #X text 276 70 - Meter speed (ms); #X text 276 120 - Signal; #X text 276 140 - Meter speed (ms); #X text 276 190 - Signal level; #X obj 26 127 snaps~; #X msg 146 86 50; #X obj 26 177 dsp01; #X text 12 10 [snaps~] - snapshot~ GUI implementation; #N canvas 504 106 494 344 META 0; #X text 12 55 AUTHOR Jo�o Pais <[email protected]>; #X text 12 95 LICENSE BSD; #X text 12 75 LIBRARY jmmmp; #X text 13 115 WEBSITE http://puredata.info/Members/jmmmp; #X text 12 6 DESCRIPTION snapshot~ GUI implementation; #X text 12 36 KEYWORDS snapshot~ GUI; #X text 12 135 VERSION 2006; #X text 14 165 INLET_0 - Signal; #X text 14 185 INLET_1 - Meter speed (ms); #X text 14 205 OUTLET_0 - Signal level; #X restore 352 246 pd META; #X connect 5 0 13 1; #X connect 8 0 13 0; #X connect 13 0 7 0; #X connect 14 0 13 1;
#N canvas 125 122 408 275 10; #X text 12 227 (C) 2006 Jo�o Pais - [email protected]; #X text 12 247 Released under the BSD License; #X text 276 100 Inlets; #X text 276 170 Outlets; #X text 276 50 Arguments; #X msg 136 66 500; #X text 175 75 Velocity (ms); #X floatatom 26 147 5 0 0 0 - - -; #X obj 26 107 osc~ 0.5; #X text 276 70 - Meter speed (ms); #X text 276 120 - Signal; #X text 276 140 - Meter speed (ms); #X text 276 190 - Signal level; #X obj 26 127 snaps~; #X msg 146 86 50; #X obj 26 177 dsp01; #X text 12 10 [snaps~] - snapshot~ GUI implementation; #X connect 5 0 13 1; #X connect 8 0 13 0; #X connect 13 0 7 0; #X connect 14 0 13 1;
34
snapshot~ GUI
snapshot~ GUI implementation
create a purr-data patch that matches the following description and keywords.
Description: snapshot~ GUI implementation, Keywords: snapshot~ GUI
1.pd_basic.pd
pd\doc\manuals\pd-msg\2.msg_and_pd\1.pd_basic.pd
#N canvas 324 138 378 475 10; #X text 20 51 turn DSP calculation off & on; #X msg 98 94 \; pd dsp 0 \;; #X msg 172 94 \; pd dsp 1 \;; #X msg 24 301 \; pd quit \;; #X floatatom 26 73 1 0 1 0 - - -, f 1; #X obj 26 123 s pd; #X msg 26 97 dsp \$1; #X msg 25 218 \; pd audiostatus \;; #X text 22 194 same as "DIO errors"; #X text 21 356 There are many more that i don't know :-(; #X text 25 12 Here are some messages we can send to pd.; #X text 21 275 Quit pd (WARNING); #N canvas 437 191 494 396 META 0; #X text 12 95 HELP_PATCH_AUTHORS Damien Henry. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 65 DESCRIPTION sending messages to a pd instance; #X text 12 45 LICENSE public domain; #X text 12 25 KEYWORDS control pd_op nonlocal tutorial; #X restore 317 443 pd META; #X connect 4 0 6 0; #X connect 6 0 5 0;
#N canvas 324 138 378 475 10; #X text 20 51 turn DSP calculation off & on; #X msg 98 94 \; pd dsp 0 \;; #X msg 172 94 \; pd dsp 1 \;; #X msg 24 301 \; pd quit \;; #X floatatom 26 73 1 0 1 0 - - -, f 1; #X obj 26 123 s pd; #X msg 26 97 dsp \$1; #X msg 25 218 \; pd audiostatus \;; #X text 22 194 same as "DIO errors"; #X text 21 356 There are many more that i don't know :-(; #X text 25 12 Here are some messages we can send to pd.; #X text 21 275 Quit pd (WARNING); #X connect 4 0 6 0; #X connect 6 0 5 0;
21
control pd_op nonlocal tutorial
sending messages to a pd instance
create a purr-data patch that matches the following description and keywords.
Description: sending messages to a pd instance, Keywords: control pd_op nonlocal tutorial
unpack-help.pd
externals\zexy\reference\unpack-help.pd
#N canvas 0 31 618 378 10; #X text 511 26 part of zexy; #X text 68 98 an atom can be intialized as a number \, then become a symbol \, later become a number again \, ....; #X obj 121 268 zexy/unpack; #X msg 121 192 1 2; #X msg 158 243 bang; #X obj 48 34 unpack; #X text 102 38 - split a message to atoms; #X text 66 68 this object is quite the same as pd's built-in [unpack] \, but it does not have fixed types; #X obj 409 249 zexy/unpack 1 2 3; #X msg 140 215 list a list is a list; #X msg 409 175 1 2; #X msg 446 226 bang; #X msg 428 198 list a list is a list; #X text 129 144 creation arguments specify the _number_ of atoms expected (default 2); #X obj 141 297 print unpack2; #X obj 121 317 print unpack1; #X obj 409 268 print upack1; #X obj 506 268 print upack3; #X obj 457 289 print upack2; #N canvas 460 154 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR IOhannes m zmoelnig; #X text 12 45 DESCRIPTION split a message to atoms; #X text 12 65 INLET_0 list bang float symbol pointer; #X text 12 85 OUTLET_N bang float symbol pointer; #X text 12 5 KEYWORDS control conversion list_op; #X restore 564 347 pd META; #X connect 2 0 15 0; #X connect 2 1 14 0; #X connect 3 0 2 0; #X connect 4 0 2 0; #X connect 8 0 16 0; #X connect 8 1 18 0; #X connect 8 2 17 0; #X connect 9 0 2 0; #X connect 10 0 8 0; #X connect 11 0 8 0; #X connect 12 0 8 0;
#N canvas 0 31 618 378 10; #X text 511 26 part of zexy; #X text 68 98 an atom can be intialized as a number \, then become a symbol \, later become a number again \, ....; #X obj 121 268 zexy/unpack; #X msg 121 192 1 2; #X msg 158 243 bang; #X obj 48 34 unpack; #X text 102 38 - split a message to atoms; #X text 66 68 this object is quite the same as pd's built-in [unpack] \, but it does not have fixed types; #X obj 409 249 zexy/unpack 1 2 3; #X msg 140 215 list a list is a list; #X msg 409 175 1 2; #X msg 446 226 bang; #X msg 428 198 list a list is a list; #X text 129 144 creation arguments specify the _number_ of atoms expected (default 2); #X obj 141 297 print unpack2; #X obj 121 317 print unpack1; #X obj 409 268 print upack1; #X obj 506 268 print upack3; #X obj 457 289 print upack2; #X connect 2 0 15 0; #X connect 2 1 14 0; #X connect 3 0 2 0; #X connect 4 0 2 0; #X connect 8 0 16 0; #X connect 8 1 18 0; #X connect 8 2 17 0; #X connect 9 0 2 0; #X connect 10 0 8 0; #X connect 11 0 8 0; #X connect 12 0 8 0;
40
control conversion list_op
split a message to atoms
create a purr-data patch that matches the following description and keywords.
Description: split a message to atoms, Keywords: control conversion list_op
wave-help.pd
externals\mapping\wave-help.pd
#N canvas 1 53 477 398 10; #X floatatom 29 40 5 0 0 0 - - -; #X floatatom 59 79 5 0 0 0 - - -; #X floatatom 102 97 5 0 0 0 - - -; #X obj 23 118 wave 25 0.4; #X obj 26 23 hsl 200 15 -1 5 0 0 empty empty center_position -2 -6 0 8 -262131 -1 -1 4600 1; #X obj 105 79 hsl 128 15 0.01 10 1 0 empty empty empty -2 -6 0 8 -257472 -1 -1 5500 1; #X obj 24 156 multi_slider 50; #X obj 61 61 hsl 128 15 0 50 0 0 empty empty number_of_points -2 -6 0 8 -225280 -1 -1 3600 1; #N canvas 464 140 494 344 META 0; #X text 12 175 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 95 INLET_1 float; #X text 12 155 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 45 DESCRIPTION return the amplitude covered by the last n (n>1) values; #X text 12 75 INLET_0 float; #X text 12 5 KEYWORDS control abstraction; #X text 12 115 INLET_2 float; #X text 12 135 OUTLET_0 list; #X restore 415 367 pd META; #X connect 1 0 3 1; #X connect 2 0 3 2; #X connect 3 0 6 0; #X connect 4 0 3 0; #X connect 4 0 0 0; #X connect 5 0 2 0; #X connect 7 0 1 0;
#N canvas 1 53 477 398 10; #X floatatom 29 40 5 0 0 0 - - -; #X floatatom 59 79 5 0 0 0 - - -; #X floatatom 102 97 5 0 0 0 - - -; #X obj 23 118 wave 25 0.4; #X obj 26 23 hsl 200 15 -1 5 0 0 empty empty center_position -2 -6 0 8 -262131 -1 -1 4600 1; #X obj 105 79 hsl 128 15 0.01 10 1 0 empty empty empty -2 -6 0 8 -257472 -1 -1 5500 1; #X obj 24 156 multi_slider 50; #X obj 61 61 hsl 128 15 0 50 0 0 empty empty number_of_points -2 -6 0 8 -225280 -1 -1 3600 1; #X connect 1 0 3 1; #X connect 2 0 3 2; #X connect 3 0 6 0; #X connect 4 0 3 0; #X connect 4 0 0 0; #X connect 5 0 2 0; #X connect 7 0 1 0;
27
control abstraction
return the amplitude covered by the last n (n>1) values
create a purr-data patch that matches the following description and keywords.
Description: return the amplitude covered by the last n (n>1) values, Keywords: control abstraction
vabs-help.pd
externals\smlib\vabs-help.pd
#N canvas 1 53 452 302 10; #X obj 106 129 vabs; #X msg 106 95 1 2 3 -4 -5 -6; #X obj 106 165 print; #N canvas 222 207 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Johannes Taelman ([email protected]) ; #X text 12 5 KEYWORDS control list_op; #X text 12 65 INLET_0 list float; #X text 12 85 OUTLET_0 float list; #X text 12 45 DESCRIPTION absolute value for lists; #X restore 389 244 pd META; #X text 351 213 j#|@2002; #X obj 373 193 SMLib-help; #X connect 0 0 2 0; #X connect 1 0 0 0;
#N canvas 1 53 452 302 10; #X obj 106 129 vabs; #X msg 106 95 1 2 3 -4 -5 -6; #X obj 106 165 print; #X text 351 213 j#|@2002; #X obj 373 193 SMLib-help; #X connect 0 0 2 0; #X connect 1 0 0 0;
17
control list_op
absolute value for lists
create a purr-data patch that matches the following description and keywords.
Description: absolute value for lists, Keywords: control list_op
env--help.pd
externals\mapping\env--help.pd
#N canvas 1 53 537 542 10; #X obj 266 362 timeroll; #X obj 42 162 random 1000; #X obj 42 136 metro 30; #X obj 42 112 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 43 365 timeroll; #X obj 68 112 loadbang; #X obj 265 264 env- 80; #X obj 42 187 / 1000; #N canvas 465 169 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 105 OUTLET_0 float; #X text 12 125 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 65 INLET_0 float; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION negative envelope follower; #X text 12 85 INLET_1 bang; #X restore 503 495 pd META; #X text 130 26 negative envelope follower; #X connect 1 0 7 0; #X connect 2 0 1 0; #X connect 3 0 2 0; #X connect 5 0 2 0; #X connect 6 0 0 0; #X connect 7 0 4 0; #X connect 7 0 6 0;
#N canvas 1 53 537 542 10; #X obj 266 362 timeroll; #X obj 42 162 random 1000; #X obj 42 136 metro 30; #X obj 42 112 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1 ; #X obj 43 365 timeroll; #X obj 68 112 loadbang; #X obj 265 264 env- 80; #X obj 42 187 / 1000; #X text 130 26 negative envelope follower; #X connect 1 0 7 0; #X connect 2 0 1 0; #X connect 3 0 2 0; #X connect 5 0 2 0; #X connect 6 0 0 0; #X connect 7 0 4 0; #X connect 7 0 6 0;
27
control abstraction
negative envelope follower
create a purr-data patch that matches the following description and keywords.
Description: negative envelope follower, Keywords: control abstraction
all_about.pd
pd\doc\5.reference\all_about.pd
#N canvas 434 184 447 377 10; #X obj 2 -3 cnv 15 445 20 empty \$0-pddp.cnv.header all_about_pd 19 11 1 18 -261106 -33289 0; #X obj 407 0 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 352 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 444 363 420 149 META 0; #X text 12 85 HELP_PATCH_AUTHORS Dave Sabine \, May 5 \, 2003 . Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 65 LIBRARY PDDP; #X text 12 45 DESCRIPTION general info for Pure Data; #X text 12 25 KEYWORDS needs_work all_about_pd; #X restore 392 354 pd META; #N canvas 213 407 428 105 Related_objects 0; #X text 31 37 Hm...what to put here?; #X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0 14 -261106 -33289 0; #X text 7 2 All About Pd- Related Objects; #X restore 103 354 pd Related_objects; #X obj 6 354 pddp/pddplink all_about.pd -text All About Pd; #X obj 24 254 pddp/pddplink cyclone/all_about_cyclone.pd; #X text 20 32 The "All About Pd" collection is a detailed reference for key concepts \, objects \, and settings in Pure Data.; #X obj 23 161 pddp/pddplink all_about_atoms.pd -text 1) All About Atoms ; #X obj 23 181 pddp/pddplink all_about_messages.pd -text 2) All About Messages; #X obj 23 201 pddp/pddplink all_about_arrays.pd -text 3) All About Arrays; #X text 20 67 If you're just getting started \, it may be helpful to take a few minutes to read the following patches:; #X text 20 222 If you're coming from Max/MSP/Jitter \, have a look at the cyclone library for compatible objects:; #X text 5 315 All PDDP help patches have a link to a general help file in the bottom left-hand corner.; #X text 20 277 There are many more "All About..." patches:; #X obj 20 294 pddp/pddplink all_about_index.pd; #X text 20 142 For a brief introduction to data and messages in Pd \, see:; #X obj 23 99 pddp/pddplink all_about_getting_help.pd -text Pure Data Tutorials and Resources; #X obj 23 119 pddp/pddplink all_about_help_patches.pd -text Usage Guide for Internal Pd Objects;
#N canvas 434 184 447 377 10; #X obj 2 -3 cnv 15 445 20 empty \$0-pddp.cnv.header all_about_pd 19 11 1 18 -261106 -33289 0; #X text 20 32 The "All About Pd" collection is a detailed reference for key concepts \, objects \, and settings in Pure Data.; #X text 20 67 If you're just getting started \, it may be helpful to take a few minutes to read the following patches:; #X text 20 222 If you're coming from Max/MSP/Jitter \, have a look at the cyclone library for compatible objects:; #X text 5 315 All PDDP help patches have a link to a general help file in the bottom left-hand corner.; #X text 20 277 There are many more "All About..." patches:; #X text 20 142 For a brief introduction to data and messages in Pd \, see:;
29
needs_work all_about_pd
general info for Pure Data
create a purr-data patch that matches the following description and keywords.
Description: general info for Pure Data, Keywords: needs_work all_about_pd
temperature-help.pd
externals\maxlib\temperature-help.pd
#N canvas 0 26 454 304 12; #X obj 45 139 temperature 500; #X floatatom 45 193 5 0 0 0 - - -; #X floatatom 45 91 5 0 0 0 - - -; #X text 132 27 written by <[email protected]>; #X floatatom 160 104 5 0 0 0 - - -; #X text 219 103 set new time interval; #X text 104 192 number of changes (i.e. the 'temperature'); #X text 104 209 of the input during one time interval; #X msg 68 112 foo; #X text 11 10 temperature :: output number of input changes in N ms ; #N canvas 293 158 494 344 META 0; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR Olaf Matthes <[email protected]>; #X text 12 105 OUTLET_0 float; #X text 12 85 INLET_1 float; #X text 12 45 DESCRIPTION output number of input changes in N ms; #X text 12 65 INLET_0 anything; #X text 12 5 KEYWORDS control analysis; #X restore 393 277 pd META; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 4 0 0 1; #X connect 8 0 0 0;
#N canvas 0 26 454 304 12; #X obj 45 139 temperature 500; #X floatatom 45 193 5 0 0 0 - - -; #X floatatom 45 91 5 0 0 0 - - -; #X text 132 27 written by <[email protected]>; #X floatatom 160 104 5 0 0 0 - - -; #X text 219 103 set new time interval; #X text 104 192 number of changes (i.e. the 'temperature'); #X text 104 209 of the input during one time interval; #X msg 68 112 foo; #X text 11 10 temperature :: output number of input changes in N ms ; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 4 0 0 1; #X connect 8 0 0 0;
25
control analysis
output number of input changes in N ms
create a purr-data patch that matches the following description and keywords.
Description: output number of input changes in N ms, Keywords: control analysis
04.attributes.pd
packages\win64_inno\build\doc\4.data.structures\pd-l2ork\ds-tutorials\04.attributes.pd
#N struct drawtut-attr float x float y; #N canvas 2 25 517 671 10; #X text 0 1 New Drawing Commands: attributes; #X text 0 1 ________________________________; #X text 53 23 Our shapes are pretty boring so far. Black lines around white space. How do we get more variety?; #X text 53 53 Svg objects have various attributes that define how the shapes (and other objects) appear and generally behave. On the web these attributes are specified with the drawing data. In Pd \, these attributes are controlled by sending messages to the relevant [draw] object.; #X text 53 123 Svg is a complex specification \, and not all of its object attributes are supported in Pd. But the basic ones are.; #X obj 53 207 struct drawtut-attr float x float y; #X scalar drawtut-attr 55 339 \;; #X text 53 153 For example \, below is a [struct] definition \, [draw] object and a scalar created from them. Let's send a message to make the rectangle more interesting.; #X msg 53 252 fill red; #X text 53 229 Click a message box to change the "fill" attribute: ; #X text 53 394 As you can see \, the "fill" message changes the fill color of the rectangle. You can use a couple different ways to tell Pd what color to use:; #X text 53 436 * English language color names: red \, green \, orange \, and so on. These should be the common names listed in the svg spec \, although x11 names might work too. (But don't depend on that.); #X text 53 487 * html colors. These begin with a number sign "#" followed by hexadecimal values like "#ccddcc" or "#68ef68". (You can also use the 3-digit shorthands if you wish.); #X text 53 526 * rgb color values using 3 float arguments. Each float should be in the range 0-255.; #X floatatom 244 253 5 0 0 0 - - -, f 5; #X msg 244 274 fill 0 \$1 0; #X text 54 596 You can set attributes like "fill" automatically by using a [loadbang] message. Notice that attributes will be the same for all scalars created from this [struct]. Later you will see how to set attributes to be different for each scalar.; #X msg 123 252 fill green; #X obj 53 313 draw rect 50 50 0 0; #N canvas 291 300 450 300 META 0; #X text 16 26 LICENSE SIBSD; #X text 16 66 AUTHOR Jonathan Wilkes; #X text 16 86 HELP_PATCH_AUTHORS Jonathan Wilkes; #X text 16 6 KEYWORDS tutorial data_structure draw gui; #X text 16 46 DESCRIPTION basic attributes for the [draw] command; #X restore 450 639 pd META; #X text 53 560 Note: there are also hsl \, hcl \, and lab colors but the interface isn't stable yet.; #X connect 8 0 18 0; #X connect 14 0 15 0; #X connect 15 0 18 0; #X connect 17 0 18 0;
#N struct drawtut-attr float x float y; #N canvas 2 25 517 671 10; #X text 0 1 New Drawing Commands: attributes; #X text 0 1 ________________________________; #X text 53 23 Our shapes are pretty boring so far. Black lines around white space. How do we get more variety?; #X text 53 53 Svg objects have various attributes that define how the shapes (and other objects) appear and generally behave. On the web these attributes are specified with the drawing data. In Pd \, these attributes are controlled by sending messages to the relevant [draw] object.; #X text 53 123 Svg is a complex specification \, and not all of its object attributes are supported in Pd. But the basic ones are.; #X obj 53 207 struct drawtut-attr float x float y; #X scalar drawtut-attr 55 339 \;; #X text 53 153 For example \, below is a [struct] definition \, [draw] object and a scalar created from them. Let's send a message to make the rectangle more interesting.; #X msg 53 252 fill red; #X text 53 229 Click a message box to change the "fill" attribute: ; #X text 53 394 As you can see \, the "fill" message changes the fill color of the rectangle. You can use a couple different ways to tell Pd what color to use:; #X text 53 436 * English language color names: red \, green \, orange \, and so on. These should be the common names listed in the svg spec \, although x11 names might work too. (But don't depend on that.); #X text 53 487 * html colors. These begin with a number sign "#" followed by hexadecimal values like "#ccddcc" or "#68ef68". (You can also use the 3-digit shorthands if you wish.); #X text 53 526 * rgb color values using 3 float arguments. Each float should be in the range 0-255.; #X floatatom 244 253 5 0 0 0 - - -, f 5; #X msg 244 274 fill 0 \$1 0; #X text 54 596 You can set attributes like "fill" automatically by using a [loadbang] message. Notice that attributes will be the same for all scalars created from this [struct]. Later you will see how to set attributes to be different for each scalar.; #X msg 123 252 fill green; #X obj 53 313 draw rect 50 50 0 0; #X text 53 560 Note: there are also hsl \, hcl \, and lab colors but the interface isn't stable yet.; #X connect 8 0 18 0; #X connect 14 0 15 0; #X connect 15 0 18 0; #X connect 17 0 18 0;
33
tutorial data_structure draw gui
basic attributes for the [draw] command
create a purr-data patch that matches the following description and keywords.
Description: basic attributes for the [draw] command, Keywords: tutorial data_structure draw gui
get-audio-dialog-help.pd
externals\hcs\get-audio-dialog-help.pd
#N canvas 0 26 611 344 10; #X msg 14 101 bang; #X obj 53 164 pddp/print; #X obj 33 169 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 14 193 prepend set; #X obj 14 268 send pd; #X obj 14 132 get-audio-dialog; #X text 133 83 Open the Audio Settings and click OK to get the data \, then click bang to use them in the patch; #X text 9 23 get the Audio settings to save as part of the patch.; #N canvas 280 175 494 344 META 0; #X text 12 135 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v3; #X text 12 115 AUTHOR Hans-Christoph Steiner; #X text 12 45 DESCRIPTION get the audio settings to save as part of the patch; #X text 12 75 INLET_0 bang; #X text 12 95 OUTLET_0 bang audio-dialog; #X text 12 5 KEYWORDS control pd_op; #X restore 562 322 pd META; #X msg 14 239; #X text 226 259 ^-- this message will be saved as part of your patch. click it or [loadbang] it to configure the Audio settings. Make sure it is attached to a [send pd] so that Pd gets the message.; #X connect 0 0 5 0; #X connect 3 0 9 0; #X connect 5 0 1 0; #X connect 5 0 2 0; #X connect 5 0 3 0; #X connect 9 0 4 0;
#N canvas 0 26 611 344 10; #X msg 14 101 bang; #X obj 53 164 pddp/print; #X obj 33 169 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 14 193 prepend set; #X obj 14 268 send pd; #X obj 14 132 get-audio-dialog; #X text 133 83 Open the Audio Settings and click OK to get the data \, then click bang to use them in the patch; #X text 9 23 get the Audio settings to save as part of the patch.; #X msg 14 239; #X text 226 259 ^-- this message will be saved as part of your patch. click it or [loadbang] it to configure the Audio settings. Make sure it is attached to a [send pd] so that Pd gets the message.; #X connect 0 0 5 0; #X connect 3 0 9 0; #X connect 5 0 1 0; #X connect 5 0 2 0; #X connect 5 0 3 0; #X connect 9 0 4 0;
26
control pd_op
get the audio settings to save as part of the patch
create a purr-data patch that matches the following description and keywords.
Description: get the audio settings to save as part of the patch, Keywords: control pd_op
swatch-gui-help.pd
abstractions\jmmmp\swatch-gui-help.pd
#N struct 1007-ds-show float x float y float colour; #N struct 1007-rgb-sel float x float y float p1x float p1y float p2x float p2y float p3x float p3y float p4x float p4y float p5x float p5y float p0x float p0y float p0x. float p0y.; #N canvas 44 109 411 442 10; #X text 12 407 Released under the BSD License; #X text 228 250 Inlets; #X text 227 300 Outlets; #X text 227 270 - Bang; #X text 227 320 - "color \$1 \$2 \$3" command; #X text 227 340 - number with current color; #X obj 13 101 swatch-gui; #X obj 28 284 hsl 128 15 0 127 0 0 empty \$0-slider Label -2 -8 0 10 -139073 -22721 -78208 0 1; #X obj 13 246 s \$0-slider; #X floatatom 149 226 10 0 0 0 - - -; #X msg 13 226 color \$1 \$2 \$3; #N canvas 504 106 383 254 META 0; #X text 12 55 AUTHOR Jo�o Pais <[email protected]>; #X text 12 95 LICENSE BSD; #X text 12 75 LIBRARY jmmmp; #X text 13 115 WEBSITE http://puredata.info/Members/jmmmp; #X text 12 36 KEYWORDS color GUI data structures; #X text 14 165 INLET_0 - bang; #X text 14 185 OUTLET_0 - "color \$1 \$2 \$3" command; #X text 14 205 OUTLET_1 - number with current color; #X text 12 135 VERSION 2014; #X text 14 225 OUTLET_2 - color for data structures; #X text 13 6 DESCRIPTION Color chooser using the hue-saturation chart ; #X restore 352 406 pd META; #X text 227 360 - color for data structures; #X floatatom 285 226 4 0 0 0 - - -; #X text 13 11 [swatch-gui] - Pick a color for your GUI using the hue-saturation chart \, for IEM or data structures colours.; #X text 11 387 (C) 2014 Jo�o Pais - [email protected]; #X text 11 41 To choose a color \, click the circle and drag it around. In case the circle disappears \, clicking in the swatch will make it appear again.; #X connect 6 0 10 0; #X connect 6 1 9 0; #X connect 6 2 13 0; #X connect 10 0 8 0;
#N struct 1007-ds-show float x float y float colour; #N struct 1007-rgb-sel float x float y float p1x float p1y float p2x float p2y float p3x float p3y float p4x float p4y float p5x float p5y float p0x float p0y float p0x. float p0y.; #N canvas 44 109 411 442 10; #X text 12 407 Released under the BSD License; #X text 228 250 Inlets; #X text 227 300 Outlets; #X text 227 270 - Bang; #X text 227 320 - "color \$1 \$2 \$3" command; #X text 227 340 - number with current color; #X obj 13 101 swatch-gui; #X obj 28 284 hsl 128 15 0 127 0 0 empty \$0-slider Label -2 -8 0 10 -139073 -22721 -78208 0 1; #X obj 13 246 s \$0-slider; #X floatatom 149 226 10 0 0 0 - - -; #X msg 13 226 color \$1 \$2 \$3; #X text 227 360 - color for data structures; #X floatatom 285 226 4 0 0 0 - - -; #X text 13 11 [swatch-gui] - Pick a color for your GUI using the hue-saturation chart \, for IEM or data structures colours.; #X text 11 387 (C) 2014 Jo�o Pais - [email protected]; #X text 11 41 To choose a color \, click the circle and drag it around. In case the circle disappears \, clicking in the swatch will make it appear again.; #X connect 6 0 10 0; #X connect 6 1 9 0; #X connect 6 2 13 0; #X connect 10 0 8 0;
36
color GUI data structures
Color chooser using the hue-saturation chart
create a purr-data patch that matches the following description and keywords.
Description: Color chooser using the hue-saturation chart, Keywords: color GUI data structures
oscillo-help.pd
externals\mapping\oscillo-help.pd
#N canvas 1 53 293 276 10; #X obj 5 6 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X floatatom 43 -78 5 0 0 0 - - -; #X text 89 -80 from 0 to 1; #X obj 43 -60 resample 30; #X obj 43 -10 oscillo; #N canvas 464 140 494 344 META 0; #X text 12 135 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 25 LICENSE GPL v2; #X text 12 95 INLET_1 float; #X text 12 115 AUTHOR Cyrille Henry and Hans-Christoph Steiner; #X text 12 45 DESCRIPTION return the amplitude covered by the last n (n>1) values; #X text 12 75 INLET_0 float; #X text 12 5 KEYWORDS control abstraction GUI; #X restore 231 161 pd META; #X connect 0 0 3 0; #X connect 1 0 3 0; #X connect 3 0 4 0;
#N canvas 1 53 293 276 10; #X obj 5 6 vsl 15 128 0 1 0 0 empty empty empty 0 -8 0 8 -262144 -1 -1 0 1; #X floatatom 43 -78 5 0 0 0 - - -; #X text 89 -80 from 0 to 1; #X obj 43 -60 resample 30; #X obj 43 -10 oscillo; #X connect 0 0 3 0; #X connect 1 0 3 0; #X connect 3 0 4 0;
18
control abstraction GUI
return the amplitude covered by the last n (n>1) values
create a purr-data patch that matches the following description and keywords.
Description: return the amplitude covered by the last n (n>1) values, Keywords: control abstraction GUI
5.loadbang.pd
pd\doc\manuals\pd-msg\1.msg_and_patch\5.loadbang.pd
#N canvas 95 75 845 545 10; #X msg 39 266 loadbang; #X obj 62 152 loadbang; #X msg 62 178 1; #X floatatom 62 204 0 0 0 0 - - -; #X obj 29 123 random 127; #X msg 29 98 bang; #X text 23 12 The loadbang message; #X text 81 98 <= click here first; #X text 118 264 <= then click here; #X obj 39 292 s pd-5.loadbang.pd; #X msg 375 442 loadbang; #X msg 450 442 clear; #N canvas 448 72 536 411 \$0-dynamic 0; #X restore 642 443 pd \$0-dynamic; #X obj 328 479 s pd-\$0-dynamic; #X text 23 37 Sending a message "loadbang" to a subpatch or abstraction receiver will fire all loadbangs in that (sub-)patch.; #X msg 328 302 clear \, obj 131 117 lb-abs \, msg 131 153 10 \, obj 113 178 + \, obj 113 65 loadbang \, msg 113 88 10 \, floatatom 113 209 5 0 0 0 - - - \, msg 245 154 10 \, obj 227 179 + \, msg 227 89 10 \, floatatom 227 210 5 0 0 0 - - - \, obj 227 66 lb-abs \, obj 245 118 loadbang \, connect 0 0 1 0 \, connect 1 0 2 1 \, connect 2 0 5 0 \, connect 3 0 4 0 \, connect 4 0 2 0 \, connect 6 0 7 1 \, connect 7 0 9 0 \, connect 8 0 7 0 \, connect 10 0 8 0 \, connect 11 0 6 0 ; #X text 325 87 A "loadbang" message is important \, if you create instances of abstractions dynamically \, that have loadbangs inside. These loadbangs DO NOT FIRE AUTOMATICALLY in dynamically created abstractions!; #X text 324 148 Loadbangs in abstractions normally fire before loadbangs in the surrounding patch and their loadbangs may propagate to the abstraction's outlet. But with dynamic patching \, outlets are not yet connected when the object has been created \, which would make such loadbangs useless.; #X text 327 222 So in the case of dynamic patching \, you're supposed to know when you're finished "instantiating" \, and then call "loadbang" by yourself by sending a "loadbang" message at the appropriate time. ; #N canvas 458 158 494 396 META 0; #X text 12 95 HELP_PATCH_AUTHORS Damien Henry. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 64 DESCRIPTION how to fire a loadbang inside a dynamically instantiating abstraction; #X text 12 42 LICENSE public domain; #X text 12 5 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial ; #X restore 782 518 pd META; #X connect 0 0 9 0; #X connect 1 0 2 0; #X connect 2 0 3 0; #X connect 4 0 3 0; #X connect 5 0 4 0; #X connect 10 0 13 0; #X connect 11 0 13 0; #X connect 15 0 13 0;
#N canvas 95 75 845 545 10; #X msg 39 266 loadbang; #X obj 62 152 loadbang; #X msg 62 178 1; #X floatatom 62 204 0 0 0 0 - - -; #X obj 29 123 random 127; #X msg 29 98 bang; #X text 23 12 The loadbang message; #X text 81 98 <= click here first; #X text 118 264 <= then click here; #X obj 39 292 s pd-5.loadbang.pd; #X msg 375 442 loadbang; #X msg 450 442 clear; #X obj 328 479 s pd-\$0-dynamic; #X text 23 37 Sending a message "loadbang" to a subpatch or abstraction receiver will fire all loadbangs in that (sub-)patch.; #X msg 328 302 clear \, obj 131 117 lb-abs \, msg 131 153 10 \, obj 113 178 + \, obj 113 65 loadbang \, msg 113 88 10 \, floatatom 113 209 5 0 0 0 - - - \, msg 245 154 10 \, obj 227 179 + \, msg 227 89 10 \, floatatom 227 210 5 0 0 0 - - - \, obj 227 66 lb-abs \, obj 245 118 loadbang \, connect 0 0 1 0 \, connect 1 0 2 1 \, connect 2 0 5 0 \, connect 3 0 4 0 \, connect 4 0 2 0 \, connect 6 0 7 1 \, connect 7 0 9 0 \, connect 8 0 7 0 \, connect 10 0 8 0 \, connect 11 0 6 0 ; #X text 325 87 A "loadbang" message is important \, if you create instances of abstractions dynamically \, that have loadbangs inside. These loadbangs DO NOT FIRE AUTOMATICALLY in dynamically created abstractions!; #X text 324 148 Loadbangs in abstractions normally fire before loadbangs in the surrounding patch and their loadbangs may propagate to the abstraction's outlet. But with dynamic patching \, outlets are not yet connected when the object has been created \, which would make such loadbangs useless.; #X text 327 222 So in the case of dynamic patching \, you're supposed to know when you're finished "instantiating" \, and then call "loadbang" by yourself by sending a "loadbang" message at the appropriate time. ; #X connect 0 0 9 0; #X connect 1 0 2 0; #X connect 2 0 3 0; #X connect 4 0 3 0; #X connect 5 0 4 0; #X connect 10 0 13 0; #X connect 11 0 13 0; #X connect 15 0 13 0;
35
control canvas_op nonlocal dynamic_patching tutorial
how to fire a loadbang inside a dynamically instantiating abstraction
create a purr-data patch that matches the following description and keywords.
Description: how to fire a loadbang inside a dynamically instantiating abstraction, Keywords: control canvas_op nonlocal dynamic_patching tutorial
piperead~-help.pd
externals\ext13\piperead~-help.pd
#N canvas 0 31 450 363 10; #X msg 102 140 1; #X msg 81 90 0; #X obj 226 21 loadbang; #X msg 226 47 \; pd dsp 1; #X obj 63 67 osc~ 440; #X msg 94 117 open /usr/local/pd/ext13/doc/pipein.wav; #X obj 246 231 dac~; #X obj 63 179 pipewrite~ 2; #X obj 142 65 osc~ 480; #X obj 224 192 piperead~ 2; #X msg 165 140 open /usr/local/pd/ext13/doc/pipein.wav; #X msg 227 164 1; #X msg 261 166 0; #X text 26 256 pipewrite/read: argument: number of channels you can create a pipe/fifo from within a shell with mknod pipename p and use this construct to send signals to another program/process. useful if you run more than one pd or mpeg-players \, ...; #N canvas 460 146 494 344 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 105 AUTHOR [email protected]; #X text 12 25 LICENSE GPL v2; #X text 12 5 KEYWORDS signal filesystem; #X text 12 45 DESCRIPTION read write to a pipe; #X text 12 65 INLET_0 float open; #X text 12 85 INLET_N signal; #X restore 389 337 pd META; #X connect 0 0 7 0; #X connect 1 0 7 0; #X connect 2 0 3 0; #X connect 4 0 7 0; #X connect 5 0 7 0; #X connect 8 0 7 1; #X connect 9 0 6 0; #X connect 9 1 6 1; #X connect 10 0 9 0; #X connect 11 0 9 0; #X connect 12 0 9 0;
#N canvas 0 31 450 363 10; #X msg 102 140 1; #X msg 81 90 0; #X obj 226 21 loadbang; #X msg 226 47 \; pd dsp 1; #X obj 63 67 osc~ 440; #X msg 94 117 open /usr/local/pd/ext13/doc/pipein.wav; #X obj 246 231 dac~; #X obj 63 179 pipewrite~ 2; #X obj 142 65 osc~ 480; #X obj 224 192 piperead~ 2; #X msg 165 140 open /usr/local/pd/ext13/doc/pipein.wav; #X msg 227 164 1; #X msg 261 166 0; #X text 26 256 pipewrite/read: argument: number of channels you can create a pipe/fifo from within a shell with mknod pipename p and use this construct to send signals to another program/process. useful if you run more than one pd or mpeg-players \, ...; #X connect 0 0 7 0; #X connect 1 0 7 0; #X connect 2 0 3 0; #X connect 4 0 7 0; #X connect 5 0 7 0; #X connect 8 0 7 1; #X connect 9 0 6 0; #X connect 9 1 6 1; #X connect 10 0 9 0; #X connect 11 0 9 0; #X connect 12 0 9 0;
35
signal filesystem
read write to a pipe
create a purr-data patch that matches the following description and keywords.
Description: read write to a pipe, Keywords: signal filesystem
bendinfix-help.pd
externals\bendinfix\bendinfix-help.pd
#N canvas 696 372 460 365 12; #X obj 22 263 bendinfix; #X floatatom 22 292 5 0 0 0 - - -, f 5; #X msg 78 233 0; #X obj 22 233 bendin; #X text 21 321 corrected pitch bend value (-8192 - 8191 range); #X text 22 206 pitch bend input; #X text 113 234 Passing 0 as input gives the amount by which the result is shifted. This will be -8192 for a vanilla-compatible bendin implementation \, 0 otherwise., f 46; #N canvas 477 282 494 344 META 0; #X text 12 5 KEYWORDS control MIDI; #X text 12 25 LICENSE MIT; #X text 12 85 INLET_0 float; #X text 12 105 OUTLET_0 float; #X text 12 129 AUTHOR Albert Gräf; #X text 12 149 WEBSITE https://agraef.github.io/purr-data/; #X text 12 169 RELEASE_DATE 2020; #X text 12 192 HELP_PATCH_AUTHORS Albert Gräf; #X text 12 45 DESCRIPTION translate bendin output to signed values for all Pd flavors; #X restore 380 335 pd META; #X text 18 2 bendinfix - correct bendin values for all Pd flavors; #X text 17 41 Background: Pd has a long-standing bug (which won't be fixed due to backward compatibility concerns) in that its bendin range (0 - 16383) doesn't match its bendout range (-8192 - 8191). The former is what MIDI readily yields \, while the latter is more convenient for translating pitch bends into frequency offsets. The bendinfix object translates bendin's output to the correct (signed) range \, and works across all Pd flavors \, including Pd-L2ork and Purr Data where bendin returns a signed result by default.; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 3 0 0 0;
#N canvas 696 372 460 365 12; #X obj 22 263 bendinfix; #X floatatom 22 292 5 0 0 0 - - -, f 5; #X msg 78 233 0; #X obj 22 233 bendin; #X text 21 321 corrected pitch bend value (-8192 - 8191 range); #X text 22 206 pitch bend input; #X text 113 234 Passing 0 as input gives the amount by which the result is shifted. This will be -8192 for a vanilla-compatible bendin implementation \, 0 otherwise., f 46; #X text 18 2 bendinfix - correct bendin values for all Pd flavors; #X text 17 41 Background: Pd has a long-standing bug (which won't be fixed due to backward compatibility concerns) in that its bendin range (0 - 16383) doesn't match its bendout range (-8192 - 8191). The former is what MIDI readily yields \, while the latter is more convenient for translating pitch bends into frequency offsets. The bendinfix object translates bendin's output to the correct (signed) range \, and works across all Pd flavors \, including Pd-L2ork and Purr Data where bendin returns a signed result by default.; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 3 0 0 0;
24
control MIDI
translate bendin output to signed values for all Pd flavors
create a purr-data patch that matches the following description and keywords.
Description: translate bendin output to signed values for all Pd flavors, Keywords: control MIDI