File Name
stringlengths
10
33
Relative Path
stringlengths
24
93
Content
stringlengths
335
3.2k
output
stringlengths
26
3.05k
Number of Records
float64
10
40
Keywords
stringclasses
150 values
Description
stringlengths
2
111
instruction
stringclasses
2 values
input
stringlengths
39
212
03.rect.pd
packages\win64_inno\build\doc\4.data.structures\pd-l2ork\ds-tutorials\03.rect.pd
#N struct drawtut-rect float x float y; #N canvas 1 25 515 614 10; #X text 0 1 __________________________; #X text 0 1 New Drawing Commands: rect; #X obj 53 87 struct drawtut-rect float x float y; #X text 53 63 Let's start with another [struct]:; #X scalar drawtut-rect 56 374 \;; #X text 53 115 As stated in the previous tutorial \, all [draw] objects have the same interface. The first word (called the selector) is always "draw". The first argument is the name of the svg shape to draw. Finally \, any arguments after that are coordinate and other data that define how to draw the shape.; #X text 53 480 You can select the scalar like any other Pd object \, move it \, cut/paste it \, and undo/redo any actions you take.; #X text 53 23 So what can we draw with [draw]? All shapes from the svg specification. These are "rect" \, "polygon" \, "polyline" \, "ellipse" \, "circle" \, "line" \, and "path".; #X text 53 510 Also note that you can define a [struct] without any "x" or "y" fields. This is because data structures may be used for purposes other than visualizing data. But if you do draw objects with x/y fields \, it will draw the scalar at 0/0 and you won't be able to move it with the mouse in "edit mode".; #X text 53 341 Below is a scalar defined by the [struct] above. As you can tell it's just two rectangles. Pretty boring stuff so far... ; #X obj 53 244 draw rect 100 40 0 0; #X obj 193 244 draw rect 40 100 120 0; #X text 53 270 You can use positive and negative numbers for the first two arguments \, but only positive numbers for the width and height. Coordinates and dimensions can be integers or floats. (One exception are "flag" values in path arcs but these will just be converted automatically to integers.); #X text 53 184 In the case of "rect" \, there are only four coordinates. The first two are the width and height of the rectangle. The third and fourth arguments are the x/y coordinates of the top-left corner of the rectangle. That's it!; #N canvas 290 275 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 a rectangle with the [draw] command ; #X restore 446 583 pd META;
#N struct drawtut-rect float x float y; #N canvas 1 25 515 614 10; #X text 0 1 __________________________; #X text 0 1 New Drawing Commands: rect; #X obj 53 87 struct drawtut-rect float x float y; #X text 53 63 Let's start with another [struct]:; #X scalar drawtut-rect 56 374 \;; #X text 53 115 As stated in the previous tutorial \, all [draw] objects have the same interface. The first word (called the selector) is always "draw". The first argument is the name of the svg shape to draw. Finally \, any arguments after that are coordinate and other data that define how to draw the shape.; #X text 53 480 You can select the scalar like any other Pd object \, move it \, cut/paste it \, and undo/redo any actions you take.; #X text 53 23 So what can we draw with [draw]? All shapes from the svg specification. These are "rect" \, "polygon" \, "polyline" \, "ellipse" \, "circle" \, "line" \, and "path".; #X text 53 510 Also note that you can define a [struct] without any "x" or "y" fields. This is because data structures may be used for purposes other than visualizing data. But if you do draw objects with x/y fields \, it will draw the scalar at 0/0 and you won't be able to move it with the mouse in "edit mode".; #X text 53 341 Below is a scalar defined by the [struct] above. As you can tell it's just two rectangles. Pretty boring stuff so far... ; #X obj 53 244 draw rect 100 40 0 0; #X obj 193 244 draw rect 40 100 120 0; #X text 53 270 You can use positive and negative numbers for the first two arguments \, but only positive numbers for the width and height. Coordinates and dimensions can be integers or floats. (One exception are "flag" values in path arcs but these will just be converted automatically to integers.); #X text 53 184 In the case of "rect" \, there are only four coordinates. The first two are the width and height of the rectangle. The third and fourth arguments are the x/y coordinates of the top-left corner of the rectangle. That's it!;
23
tutorial data_structure draw gui
drawing a rectangle with the [draw] command
create a purr-data patch that matches the following description and keywords.
Description: drawing a rectangle with the [draw] command, Keywords: tutorial data_structure draw gui
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
A00.intro.pd
packages\win64_inno\build\doc\3.audio.examples\A00.intro.pd
#N canvas 434 230 448 236 10; #X text 19 56 This is the second of three tutorial series on Pd. This one shows the time-domain audio processing features. (The first one showed how to use Pd to do "control" computations \, and the third is about frequency-domain techniques.); #X text 19 124 These patches are accompanied by an ONLINE BOOK:; #X text 20 174 which develops the underlying theory.; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header introduction 20 10 1 18 -261139 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 214 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.37. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION introduction to audio tutorials; #X text 12 5 KEYWORDS tutorial; #X restore 392 216 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 Introduction- Related Help Documents; #X text 19 37 Link to the manual here; #X restore 103 216 pd References; #X obj 66 149 pddp/pddplink http://www.crca.ucsd.edu/~msp/techniques.htm ; #X text 19 36 An Introduction to the Pd Audio Example Patches; #X obj 6 216 pddp/pddplink ../5.reference/pddp/help.pd -text help;
#N canvas 434 230 448 236 10; #X text 19 56 This is the second of three tutorial series on Pd. This one shows the time-domain audio processing features. (The first one showed how to use Pd to do "control" computations \, and the third is about frequency-domain techniques.); #X text 19 124 These patches are accompanied by an ONLINE BOOK:; #X text 20 174 which develops the underlying theory.; #X text 19 36 An Introduction to the Pd Audio Example Patches;
24
tutorial
introduction to audio tutorials
create a purr-data patch that matches the following description and keywords.
Description: introduction to audio tutorials, Keywords: tutorial
ISOtime-help.pd
externals\hcs\ISOtime-help.pd
#N canvas 0 31 362 237 10; #X msg 139 82 bang; #X symbolatom 138 156 0 0 0 0 - - -; #X obj 139 114 ISOtime; #X text 49 29 output the current time in ISO format; #N canvas 280 175 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 v3; #X text 12 105 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control; #X text 12 45 DESCRIPTION output the current time in ISO format; #X text 12 65 INLET_0 bang; #X text 12 85 OUTLET_0 symbol; #X restore 302 212 pd META; #X connect 0 0 2 0; #X connect 2 0 1 0;
#N canvas 0 31 362 237 10; #X msg 139 82 bang; #X symbolatom 138 156 0 0 0 0 - - -; #X obj 139 114 ISOtime; #X text 49 29 output the current time in ISO format; #X connect 0 0 2 0; #X connect 2 0 1 0;
16
control
output the current time in ISO format
create a purr-data patch that matches the following description and keywords.
Description: output the current time in ISO format, Keywords: control
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
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
unserialize-help.pd
externals\ggee\control\unserialize-help.pd
#N canvas 0 31 450 300 10; #X text 54 47 placeholder help patch; #X obj 144 165 print; #X floatatom 125 89 5 0 0 0 - - -; #X obj 140 126 unserialize 4; #N canvas 391 259 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 conversion; #X text 12 65 INLET_0 float; #X text 12 45 DESCRIPTION turn a stream of floats into a list; #X text 12 85 OUTLET_0 list; #X restore 390 260 pd META; #X connect 2 0 3 0; #X connect 3 0 1 0;
#N canvas 0 31 450 300 10; #X text 54 47 placeholder help patch; #X obj 144 165 print; #X floatatom 125 89 5 0 0 0 - - -; #X obj 140 126 unserialize 4; #X connect 2 0 3 0; #X connect 3 0 1 0;
16
control conversion
turn a stream of floats into a list
create a purr-data patch that matches the following description and keywords.
Description: turn a stream of floats into a list, Keywords: control conversion
plus-help.pd
externals\maxlib\plus-help.pd
#N canvas 0 26 464 316 12; #X floatatom 54 217 5 0 0 0 - - -; #X floatatom 54 127 5 0 0 0 - - -; #X floatatom 107 127 5 0 0 0 - - -; #X text 133 204 use creation arguments to set initial; #X text 133 220 values for inlets; #X text 26 20 plus :: like '+' but calculates result; #X msg 23 83 bang; #X text 69 82 calculate and output result now; #X obj 54 172 plus 8 6 2; #X floatatom 161 127 5 0 0 0 - - -; #X text 91 40 whenever leftmost or second inlet is changed; #N canvas 295 203 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 105 INLET_1 float; #X text 12 45 DESCRIPTION like + but calculates result whenever leftmost or second inlet is changed; #X text 12 85 INLET_0 float bang; #X text 12 125 INLET_2 float; #X text 12 145 OUTLET_0 float; #X text 12 5 KEYWORDS control; #X restore 395 283 pd META; #X connect 1 0 8 0; #X connect 2 0 8 1; #X connect 6 0 8 0; #X connect 8 0 0 0; #X connect 9 0 8 2;
#N canvas 0 26 464 316 12; #X floatatom 54 217 5 0 0 0 - - -; #X floatatom 54 127 5 0 0 0 - - -; #X floatatom 107 127 5 0 0 0 - - -; #X text 133 204 use creation arguments to set initial; #X text 133 220 values for inlets; #X text 26 20 plus :: like '+' but calculates result; #X msg 23 83 bang; #X text 69 82 calculate and output result now; #X obj 54 172 plus 8 6 2; #X floatatom 161 127 5 0 0 0 - - -; #X text 91 40 whenever leftmost or second inlet is changed; #X connect 1 0 8 0; #X connect 2 0 8 1; #X connect 6 0 8 0; #X connect 8 0 0 0; #X connect 9 0 8 2;
28
control
like + but calculates result whenever leftmost or second inlet is changed
create a purr-data patch that matches the following description and keywords.
Description: like + but calculates result whenever leftmost or second inlet is changed, Keywords: control
vlmax-help.pd
externals\smlib\vlmax-help.pd
#N canvas 31 108 466 316 10; #N canvas 0 22 450 300 (subpatch) 0; #X array array_vlmax 10 float 0; #X coords 0 1 9 -1 200 140 1; #X restore 239 72 graph; #X msg 8 58 1 1 1 1 1 1 1 1 1 1; #X msg 8 80 1 0 1 0 1 0 1 0 1 0; #X msg 8 102 0 1 0 1 0 1 0 1 0 1; #X msg 8 124 0 0 0 0 0 0 0 0 0 0; #X msg 8 146 -1 -1 0 0 -1 -1 0 0 -1 -1; #X msg 8 168 0 0 0 0 0 1 1 1 1 1; #X text 376 255 j#|@2002; #X text 8 22 the argument is the half-decay expressed in number of activations; #X obj 397 234 SMLib-help; #X obj 8 224 vlmax 6; #X obj 8 295 s array_vlmax; #X msg 27 201 decay 20; #X text 9 4 vlmax: vector leaky maximum; #N canvas 243 181 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 45 DESCRIPTION vector leaky maximum; #X text 12 5 KEYWORDS control list_op; #X text 12 65 INLET_0 float list decay; #X text 12 85 OUTLET_0 list float; #X restore 406 278 pd META; #X obj 8 249 list prepend 0; #X obj 8 273 list trim; #X connect 1 0 10 0; #X connect 2 0 10 0; #X connect 3 0 10 0; #X connect 4 0 10 0; #X connect 5 0 10 0; #X connect 6 0 10 0; #X connect 10 0 15 0; #X connect 12 0 10 0; #X connect 15 0 16 0; #X connect 16 0 11 0;
#N canvas 31 108 466 316 10;
39
control list_op
vector leaky maximum
create a purr-data patch that matches the following description and keywords.
Description: vector leaky maximum, Keywords: control list_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
listfunnel-help.pd
externals\maxlib\listfunnel-help.pd
#N canvas 0 26 452 302 12; #X obj 47 160 listfunnel; #X floatatom 47 89 5 0 0 0 - - -; #X obj 47 219 unpack f f; #X floatatom 47 244 5 0 0 0 - - -; #X floatatom 122 246 5 0 0 0 - - -; #X obj 61 194 print listfunnel; #X msg 73 114 17.3 23 147 11; #X text 37 23 listfunnel :: send values out as a list with; #X text 149 38 source index; #X text 149 55 based on code found on the web; #X msg 210 113 99 \$1 12; #X floatatom 210 86 5 0 0 0 - - -; #N canvas 399 175 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 85 OUTLET_0 list; #X text 12 5 KEYWORDS control list_op; #X text 12 45 DESCRIPTION send values out as a list with source index ; #X text 12 65 INLET_0 float list; #X restore 386 264 pd META; #X connect 0 0 5 0; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 2 0 3 0; #X connect 2 1 4 0; #X connect 6 0 0 0; #X connect 10 0 0 0; #X connect 11 0 10 0;
#N canvas 0 26 452 302 12; #X obj 47 160 listfunnel; #X floatatom 47 89 5 0 0 0 - - -; #X obj 47 219 unpack f f; #X floatatom 47 244 5 0 0 0 - - -; #X floatatom 122 246 5 0 0 0 - - -; #X obj 61 194 print listfunnel; #X msg 73 114 17.3 23 147 11; #X text 37 23 listfunnel :: send values out as a list with; #X text 149 38 source index; #X text 149 55 based on code found on the web; #X msg 210 113 99 \$1 12; #X floatatom 210 86 5 0 0 0 - - -; #X connect 0 0 5 0; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 2 0 3 0; #X connect 2 1 4 0; #X connect 6 0 0 0; #X connect 10 0 0 0; #X connect 11 0 10 0;
30
control list_op
send values out as a list with source index
create a purr-data patch that matches the following description and keywords.
Description: send values out as a list with source index, Keywords: control list_op
rad2hid-help.pd
externals\hid\rad2hid-help.pd
#N canvas 0 31 467 307 10; #X obj 5 2 cnv 15 450 20 empty empty rad2hid 2 11 1 18 -233017 -66577 0; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 234 269 released under the GNU GPL; #X text 165 228 For more info:; #X text 20 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 300 168 related objects:; #X obj 233 184 hid/rad2hid; #X obj 312 184 hid/deg2hid; #X obj 391 184 hid/hid2deg; #X floatatom 69 195 5 0 0 1 hid - -; #X obj 72 95 hsl 128 15 -3.14159 3.14159 0 0 empty empty radians 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 125 9 0 0 0 - - -; #X obj 69 160 hid/rad2hid; #X text 21 35 This object converts numbers from radians (-pi to pi) to the [hid] range (0 to 1) with the 0's lining up in the same place. ; #N canvas 477 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 45 DESCRIPTION convert numbers from radians (-pi to pi) to the [hid] range (0 to 1) with 0's lining up in the same place; #X text 12 75 INLET_0 float; #X text 12 95 OUTLET_0 float; #X text 12 5 KEYWORDS control user_input abstraction; #X restore 416 275 pd META; #X connect 10 0 12 0; #X connect 10 0 11 0; #X connect 12 0 9 0;
#N canvas 0 31 467 307 10; #X text 234 269 released under the GNU GPL; #X text 165 228 For more info:; #X text 20 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 300 168 related objects:; #X obj 233 184 hid/rad2hid; #X obj 312 184 hid/deg2hid; #X obj 391 184 hid/hid2deg; #X floatatom 69 195 5 0 0 1 hid - -; #X obj 72 95 hsl 128 15 -3.14159 3.14159 0 0 empty empty radians 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 125 9 0 0 0 - - -; #X obj 69 160 hid/rad2hid; #X text 21 35 This object converts numbers from radians (-pi to pi) to the [hid] range (0 to 1) with the 0's lining up in the same place. ; #X connect 10 0 12 0; #X connect 10 0 11 0; #X connect 12 0 9 0;
27
control user_input abstraction
convert numbers from radians (-pi to pi) to the [hid] range (0 to 1) 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 radians (-pi to pi) to the [hid] range (0 to 1) with 0's lining up in the same place, Keywords: control user_input abstraction
inv-help.pd
externals\creb\doc\inv-help.pd
#N canvas 0 26 450 300 10; #N canvas 331 92 494 307 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 DESCRIPTION inverse; #X text 12 65 INLET_0 float; #X text 12 85 OUTLET_0 float; #X text 12 5 KEYWORDS control abstraction needs_work (example patch) ; #X text 12 105 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X restore 391 275 pd META; #X obj 139 143 inv;
#N canvas 0 26 450 300 10; #X obj 139 143 inv;
11
control abstraction needs_work (example patch)
inverse
create a purr-data patch that matches the following description and keywords.
Description: inverse, Keywords: control abstraction needs_work (example patch)
sample_packel-help.pd
externals\tof\tof\sample_packel-help.pd
#N canvas 1 53 551 304 10; #X text 26 30 Tags: Sample Sound; #X text 30 60 Warning: [tof/sample_packel] is only for advanced users! ; #X msg 146 181 sample test; #X text 225 177 Inlet 2 \, sample symbol: the sample to be modified ; #X msg 57 100 end 1000; #X msg 92 125 start 10; #X text 120 99 Change the end of the sample; #X text 150 122 Change the start of the sample; #X obj 57 210 tof/sample_packel; #X text 26 12 Description: Modifies the properties of a sample; #N canvas 286 191 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 Thomas Ouellet Fredericks; #X text 12 45 DESCRIPTION modify the properties of a sample; #X text 12 5 KEYWORDS control abstraction array; #X text 12 65 INLET_0 start end; #X text 12 85 INLET_1 sample; #X restore 489 254 pd META; #X connect 2 0 8 1; #X connect 4 0 8 0; #X connect 5 0 8 0;
#N canvas 1 53 551 304 10; #X text 26 30 Tags: Sample Sound; #X text 30 60 Warning: [tof/sample_packel] is only for advanced users! ; #X msg 146 181 sample test; #X text 225 177 Inlet 2 \, sample symbol: the sample to be modified ; #X msg 57 100 end 1000; #X msg 92 125 start 10; #X text 120 99 Change the end of the sample; #X text 150 122 Change the start of the sample; #X obj 57 210 tof/sample_packel; #X text 26 12 Description: Modifies the properties of a sample; #X connect 2 0 8 1; #X connect 4 0 8 0; #X connect 5 0 8 0;
23
control abstraction array
modify the properties of a sample
create a purr-data patch that matches the following description and keywords.
Description: modify the properties of a sample, Keywords: control abstraction array
vvminus-help.pd
externals\smlib\vvminus-help.pd
#N canvas 1 53 326 251 10; #X msg 25 90 1 2 3; #X msg 82 94 4 5 6; #X msg 168 95 1 2 3; #X msg 228 95 4; #X msg 25 66 1; #X msg 168 71 1; #X text 248 191 j#|@2002; #X text 18 10 vvminus substracts two lists of floats; #X text 18 26 or a float from a list of floats; #X obj 49 124 vvminus; #X obj 189 125 vvminus 0; #X obj 268 170 SMLib-help; #X obj 49 148 print vvminus; #X obj 189 149 print vvminus; #N canvas 102 157 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 Johannes Taelman ([email protected]) ; #X text 12 65 INLET_0 list float; #X text 12 5 KEYWORDS control list_op; #X text 12 85 INLET_1 list float; #X text 12 105 OUTLET_0 list float; #X text 12 45 DESCRIPTION substracts two lists of floats; #X restore 267 216 pd META; #X connect 0 0 9 0; #X connect 1 0 9 1; #X connect 2 0 10 0; #X connect 3 0 10 1; #X connect 4 0 9 0; #X connect 5 0 10 0; #X connect 9 0 12 0; #X connect 10 0 13 0;
#N canvas 1 53 326 251 10; #X msg 25 90 1 2 3; #X msg 82 94 4 5 6; #X msg 168 95 1 2 3; #X msg 228 95 4; #X msg 25 66 1; #X msg 168 71 1; #X text 248 191 j#|@2002; #X text 18 10 vvminus substracts two lists of floats; #X text 18 26 or a float from a list of floats; #X obj 49 124 vvminus; #X obj 189 125 vvminus 0; #X obj 268 170 SMLib-help; #X obj 49 148 print vvminus; #X obj 189 149 print vvminus; #X connect 0 0 9 0; #X connect 1 0 9 1; #X connect 2 0 10 0; #X connect 3 0 10 1; #X connect 4 0 9 0; #X connect 5 0 10 0; #X connect 9 0 12 0; #X connect 10 0 13 0;
33
control list_op
substracts two lists of floats
create a purr-data patch that matches the following description and keywords.
Description: substracts two lists of floats, Keywords: control list_op
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
ce_path-help.pd
externals\hcs\ce_path-help.pd
#N canvas 0 26 423 338 10; #X declare -lib cyclone -lib zexy; #X msg 21 52 bang; #X symbolatom 32 170 0 0 0 0 - - -; #X obj 21 246 print; #X text 80 75 start at the top of the list again; #X msg 33 76 rewind; #X obj 21 129 ce_path; #X obj 61 150 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X text 81 148 done; #X text 68 51 get next item in list of canvas-local paths; #X text 29 269 Sending bangs to [ce_path] makes it output the loaded paths one at a time.; #N canvas 433 104 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 v3; #X text 12 125 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control canvas_op; #X text 12 45 DESCRIPTION report canvas-local paths; #X text 12 65 INLET_0 bang rewind; #X text 12 85 OUTLET_0 symbol; #X text 12 105 OUTLET_1 bang; #X restore 372 316 pd META; #X obj 223 15 import cyclone zexy; #X connect 0 0 5 0; #X connect 4 0 5 0; #X connect 5 0 1 0; #X connect 5 0 2 0; #X connect 5 1 6 0;
#N canvas 0 26 423 338 10; #X declare -lib cyclone -lib zexy; #X msg 21 52 bang; #X symbolatom 32 170 0 0 0 0 - - -; #X obj 21 246 print; #X text 80 75 start at the top of the list again; #X msg 33 76 rewind; #X obj 21 129 ce_path; #X obj 61 150 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X text 81 148 done; #X text 68 51 get next item in list of canvas-local paths; #X text 29 269 Sending bangs to [ce_path] makes it output the loaded paths one at a time.; #X obj 223 15 import cyclone zexy; #X connect 0 0 5 0; #X connect 4 0 5 0; #X connect 5 0 1 0; #X connect 5 0 2 0; #X connect 5 1 6 0;
28
control canvas_op
report canvas-local paths
create a purr-data patch that matches the following description and keywords.
Description: report canvas-local paths, Keywords: control canvas_op
14.dollarsigns.pd
pd\doc\2.control.examples\14.dollarsigns.pd
#N canvas 434 123 448 139 10; #X obj 103 79 dollarsign2 three 4; #X text 19 37 An abstraction's creation arguments may be either numbers or symbols. Gory details are inside:; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header dollarsigns 20 10 1 18 -261139 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 117 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 405 151 494 284 META 0; #X text 12 125 WEBSITE http://crca.ucsd.edu/~msp/; #X text 12 105 AUTHOR Miller Puckette; #X text 12 85 LIBRARY PDDP; #X text 12 45 LICENSE SIBSD; #X text 12 145 HELP_PATCH_AUTHORS Updated for release 0.34. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 65 DESCRIPTION example patch for dollarsign variables; #X text 12 25 KEYWORDS control abstraction tutorial; #X restore 382 119 pd META; #N canvas 13 202 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 Dollar Signs- Related Help Documents; #X obj 63 53 pddp/pddplink ../5.reference/all_about_dollarsign_zero.pd -text doc/5.reference/all_about_dollarsign_zero.pd; #X obj 63 73 pddp/pddplink ../5.reference/all_about_atoms.pd -text doc/5.reference/all_about_atoms.pd; #X restore 103 119 pd References; #X obj 6 119 pddp/pddplink ../5.reference/pddp/help.pd -text help;
#N canvas 434 123 448 139 10; #X obj 103 79 dollarsign2 three 4; #X text 19 37 An abstraction's creation arguments may be either numbers or symbols. Gory details are inside:;
22
control abstraction tutorial
example patch for dollarsign variables
create a purr-data patch that matches the following description and keywords.
Description: example patch for dollarsign variables, Keywords: control abstraction tutorial
lrange-help.pd
externals\smlib\lrange-help.pd
#N canvas 1 53 441 199 10; #X text 351 133 j#|@2002; #X obj 373 111 SMLib-help; #X floatatom 54 72 5 0 0 0 - - -; #X obj 10 55 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 54 52 x(i); #X floatatom 10 168 5 0 0 0 - - -; #X obj 10 98 float; #X text 6 21 argument: half-decay time (in number of activations); #X msg 119 98 clear; #X text 117 76 clear accumulator; #X text 7 4 lrange: leaky maximum minus leaky minimum; #X obj 10 138 lrange 10; #X msg 244 106 decay 5; #X text 243 90 set half-decay time; #N canvas 224 251 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 filter; #X text 12 85 OUTLET_0 float; #X text 12 105 AUTHOR Johannes Taelman ([email protected]) ; #X text 12 45 DESCRIPTION leaky maximum minus leaky minimum; #X text 12 65 INLET_0 float clear decay; #X restore 391 156 pd META; #X connect 2 0 6 1; #X connect 3 0 6 0; #X connect 6 0 11 0; #X connect 8 0 11 0; #X connect 11 0 5 0; #X connect 12 0 11 0;
#N canvas 1 53 441 199 10; #X text 351 133 j#|@2002; #X obj 373 111 SMLib-help; #X floatatom 54 72 5 0 0 0 - - -; #X obj 10 55 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 54 52 x(i); #X floatatom 10 168 5 0 0 0 - - -; #X obj 10 98 float; #X text 6 21 argument: half-decay time (in number of activations); #X msg 119 98 clear; #X text 117 76 clear accumulator; #X text 7 4 lrange: leaky maximum minus leaky minimum; #X obj 10 138 lrange 10; #X msg 244 106 decay 5; #X text 243 90 set half-decay time; #X connect 2 0 6 1; #X connect 3 0 6 0; #X connect 6 0 11 0; #X connect 8 0 11 0; #X connect 11 0 5 0; #X connect 12 0 11 0;
30
control filter
leaky maximum minus leaky minimum
create a purr-data patch that matches the following description and keywords.
Description: leaky maximum minus leaky minimum, Keywords: control filter
pi-help.pd
externals\hcs\pi-help.pd
#N canvas 0 26 466 232 10; #X obj 5 2 cnv 15 450 20 empty empty pi 2 11 1 18 -233017 -66577 0 ; #X msg 422 3 pddp; #X obj 142 149 pi; #X floatatom 142 192 11 0 0 0 - - -; #X msg 142 106 bang; #X text 32 51 The value of pi as accurate as Pd can manage:; #N canvas 280 175 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 v3; #X text 12 105 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control trigonometry; #X text 12 45 DESCRIPTION value of pi as accurately as Pd can manage ; #X text 12 65 INLET_0 bang; #X text 12 85 OUTLET_0 float; #X restore 417 211 pd META; #X connect 2 0 3 0; #X connect 4 0 2 0;
#N canvas 0 26 466 232 10; #X msg 422 3 pddp; #X obj 142 149 pi; #X floatatom 142 192 11 0 0 0 - - -; #X msg 142 106 bang; #X text 32 51 The value of pi as accurate as Pd can manage:; #X connect 2 0 3 0; #X connect 4 0 2 0;
18
control trigonometry
value of pi as accurately as Pd can manage
create a purr-data patch that matches the following description and keywords.
Description: value of pi as accurately as Pd can manage, Keywords: control trigonometry
A00.intro.pd
pd\doc\3.audio.examples\A00.intro.pd
#N canvas 434 230 448 236 10; #X text 19 56 This is the second of three tutorial series on Pd. This one shows the time-domain audio processing features. (The first one showed how to use Pd to do "control" computations \, and the third is about frequency-domain techniques.); #X text 19 124 These patches are accompanied by an ONLINE BOOK:; #X text 20 174 which develops the underlying theory.; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header introduction 20 10 1 18 -261139 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X obj 1 214 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.37. Jonathan Wilkes revised the patch to conform to the PDDP template for Pd version 0.42.; #X text 12 45 DESCRIPTION introduction to audio tutorials; #X text 12 5 KEYWORDS tutorial; #X restore 392 216 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 Introduction- Related Help Documents; #X text 19 37 Link to the manual here; #X restore 103 216 pd References; #X obj 66 149 pddp/pddplink http://www.crca.ucsd.edu/~msp/techniques.htm ; #X text 19 36 An Introduction to the Pd Audio Example Patches; #X obj 6 216 pddp/pddplink ../5.reference/pddp/help.pd -text help;
#N canvas 434 230 448 236 10; #X text 19 56 This is the second of three tutorial series on Pd. This one shows the time-domain audio processing features. (The first one showed how to use Pd to do "control" computations \, and the third is about frequency-domain techniques.); #X text 19 124 These patches are accompanied by an ONLINE BOOK:; #X text 20 174 which develops the underlying theory.; #X text 19 36 An Introduction to the Pd Audio Example Patches;
24
tutorial
introduction to audio tutorials
create a purr-data patch that matches the following description and keywords.
Description: introduction to audio tutorials, Keywords: tutorial
urn-help.pd
externals\maxlib\urn-help.pd
#N canvas 0 0 462 312 12; #X obj 59 162 urn 8; #X msg 117 92 clear; #X floatatom 59 221 5 0 0 0 - - -; #X msg 59 65 bang; #X obj 149 221 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 104 65 choose next number; #X text 169 93 clear / refill urn; #X floatatom 109 130 5 0 0 0 - - -; #X text 161 130 change number of items in urn; #X text 29 10 urn :: urn selection model; #X text 181 221 bang if urn is empty; #N canvas 293 158 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 45 DESCRIPTION urn selection model; #X text 12 65 INLET_0 bang clear; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 float; #X text 12 125 OUTLET_1 bang; #X restore 390 274 pd META; #X connect 0 0 2 0; #X connect 0 1 4 0; #X connect 1 0 0 0; #X connect 3 0 0 0; #X connect 7 0 0 1;
#N canvas 0 0 462 312 12; #X obj 59 162 urn 8; #X msg 117 92 clear; #X floatatom 59 221 5 0 0 0 - - -; #X msg 59 65 bang; #X obj 149 221 bng 20 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 104 65 choose next number; #X text 169 93 clear / refill urn; #X floatatom 109 130 5 0 0 0 - - -; #X text 161 130 change number of items in urn; #X text 29 10 urn :: urn selection model; #X text 181 221 bang if urn is empty; #X connect 0 0 2 0; #X connect 0 1 4 0; #X connect 1 0 0 0; #X connect 3 0 0 0; #X connect 7 0 0 1;
28
control random
urn selection model
create a purr-data patch that matches the following description and keywords.
Description: urn selection model, Keywords: control random
get-midi-dialog-help.pd
externals\hcs\get-midi-dialog-help.pd
#N canvas 0 26 611 344 10; #X msg 34 111 bang; #X obj 73 174 pddp/print; #X obj 53 179 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X text 9 23 get the MIDI settings to save as part of the patch.; #X text 153 93 Open the MIDI Settings and click OK to get the data \, then click bang to use them in the patch; #X obj 34 142 get-midi-dialog; #X obj 34 203 prepend set; #X obj 34 278 send pd; #X text 246 249 <-- this message will be saved as part of your patch. click it or [loadbang] it to configure the MIDI settings. Make sure it is attached to a [send pd] so that Pd gets the message.; #X msg 34 249 midi-dialog 0 0 0 0 0 0 0 0 1 1; #N canvas 386 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 v3; #X text 12 115 AUTHOR Hans-Christoph Steiner; #X text 12 45 DESCRIPTION get Pd's MIDI settings to save as part of the patch; #X text 12 75 INLET_0 bang; #X text 12 95 OUTLET_0 midi-dialog; #X text 12 5 KEYWORDS control pd_op; #X restore 562 322 pd META; #X connect 0 0 5 0; #X connect 5 0 1 0; #X connect 5 0 2 0; #X connect 5 0 6 0; #X connect 6 0 9 0; #X connect 9 0 7 0;
#N canvas 0 26 611 344 10; #X msg 34 111 bang; #X obj 73 174 pddp/print; #X obj 53 179 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X text 9 23 get the MIDI settings to save as part of the patch.; #X text 153 93 Open the MIDI Settings and click OK to get the data \, then click bang to use them in the patch; #X obj 34 142 get-midi-dialog; #X obj 34 203 prepend set; #X obj 34 278 send pd; #X text 246 249 <-- this message will be saved as part of your patch. click it or [loadbang] it to configure the MIDI settings. Make sure it is attached to a [send pd] so that Pd gets the message.; #X msg 34 249 midi-dialog 0 0 0 0 0 0 0 0 1 1; #X connect 0 0 5 0; #X connect 5 0 1 0; #X connect 5 0 2 0; #X connect 5 0 6 0; #X connect 6 0 9 0; #X connect 9 0 7 0;
26
control pd_op
get Pd's MIDI settings to save as part of the patch
create a purr-data patch that matches the following description and keywords.
Description: get Pd's MIDI settings to save as part of the patch, Keywords: control pd_op
track_max-help.pd
externals\mapping\track_max-help.pd
#N canvas 1 53 478 344 10; #X obj 2 -8 cnv 15 450 20 empty empty track_max 2 11 1 18 -233017 -66577 0; #X floatatom 97 79 5 0 0 0 - - -; #X msg 148 61 bang; #X floatatom 97 142 5 0 0 0 - - -; #X text 183 62 <-- bang to reset; #X obj 159 86 tgl 15 1 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1 ; #X text 179 86 <-- stop/start tracking; #X text 7 26 Track maximum value:; #X floatatom 97 229 5 0 0 0 - - -; #X msg 176 211 bang; #X floatatom 97 292 5 0 0 0 - - -; #X text 211 212 <-- bang to reset; #X obj 187 236 tgl 15 1 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1; #X text 207 236 <-- stop/start tracking; #X text 14 173 The argument and/or the second inlet set the initial minimum value.; #X floatatom 136 229 5 0 0 0 - - -; #X obj 97 262 track_max 72; #N canvas 371 158 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 Cyrille Henry and Hans-Christoph Steiner; #X text 12 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION track maximum value; #X text 12 65 INLET_0 float; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float bang; #X text 12 125 OUTLET_0 float; #X restore 424 305 pd META; #X obj 97 112 track_max; #X connect 1 0 18 0; #X connect 2 0 18 2; #X connect 5 0 18 2; #X connect 8 0 16 0; #X connect 9 0 16 2; #X connect 12 0 16 2; #X connect 15 0 16 1; #X connect 16 0 10 0; #X connect 18 0 3 0;
#N canvas 1 53 478 344 10; #X obj 2 -8 cnv 15 450 20 empty empty track_max 2 11 1 18 -233017 -66577 0; #X floatatom 97 79 5 0 0 0 - - -; #X msg 148 61 bang; #X floatatom 97 142 5 0 0 0 - - -; #X text 183 62 <-- bang to reset; #X obj 159 86 tgl 15 1 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1 ; #X text 179 86 <-- stop/start tracking; #X text 7 26 Track maximum value:; #X floatatom 97 229 5 0 0 0 - - -; #X msg 176 211 bang; #X floatatom 97 292 5 0 0 0 - - -; #X text 211 212 <-- bang to reset; #X obj 187 236 tgl 15 1 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1; #X text 207 236 <-- stop/start tracking; #X text 14 173 The argument and/or the second inlet set the initial minimum value.; #X floatatom 136 229 5 0 0 0 - - -; #X obj 97 262 track_max 72; #X obj 97 112 track_max; #X connect 1 0 18 0; #X connect 2 0 18 2; #X connect 5 0 18 2; #X connect 8 0 16 0; #X connect 9 0 16 2; #X connect 12 0 16 2; #X connect 15 0 16 1; #X connect 16 0 10 0; #X connect 18 0 3 0;
39
control abstraction
track maximum value
create a purr-data patch that matches the following description and keywords.
Description: track maximum value, Keywords: control abstraction
vclip-help.pd
externals\smlib\vclip-help.pd
#N canvas 1 53 324 246 10; #X obj 11 141 vclip -1 1; #X obj 11 196 print; #X msg 11 30 -4 -3 -2 -1 0 1 2 3 4; #X floatatom 73 64 5 0 0 0 - - -; #X floatatom 118 103 5 0 0 0 - - -; #X text 10 6 vclip clips each element in a vector; #X text 23 166 arguments: lower bound \, upper bound; #X text 20 52 input; #X text 79 81 lower bound; #X text 121 120 upper bound; #X text 243 183 j#|@2002; #X obj 265 163 SMLib-help; #N canvas 223 236 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 list_op; #X text 12 45 DESCRIPTION clip each element in a vector; #X text 12 65 INLET_0 list float; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X text 12 125 OUTLET_0 list float; #X restore 282 207 pd META; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 3 0 0 1; #X connect 4 0 0 2;
#N canvas 1 53 324 246 10; #X obj 11 141 vclip -1 1; #X obj 11 196 print; #X msg 11 30 -4 -3 -2 -1 0 1 2 3 4; #X floatatom 73 64 5 0 0 0 - - -; #X floatatom 118 103 5 0 0 0 - - -; #X text 10 6 vclip clips each element in a vector; #X text 23 166 arguments: lower bound \, upper bound; #X text 20 52 input; #X text 79 81 lower bound; #X text 121 120 upper bound; #X text 243 183 j#|@2002; #X obj 265 163 SMLib-help; #X connect 0 0 1 0; #X connect 2 0 0 0; #X connect 3 0 0 1; #X connect 4 0 0 2;
28
control list_op
clip each element in a vector
create a purr-data patch that matches the following description and keywords.
Description: clip each element in a vector, Keywords: control list_op
64k-help.pd
externals\creb\doc\64k-help.pd
#N canvas 0 0 450 300 10; #X text 102 32 a beat shuffler using raw 64k/break sample banks; #N canvas 331 92 494 506 META 0; #X text 12 265 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 85 INLET_1 float; #X text 12 45 DESCRIPTION an overlap add tabread~ clone; #X text 12 65 INLET_0 float; #X text 12 105 INLET_2 float; #X text 12 125 INLET_3 bang; #X text 12 145 INLET_4 float; #X text 12 165 INLET_5 float; #X text 12 185 OUTLET_0 signal; #X text 12 205 OUTLET_1 float; #X text 12 225 OUTLET_2 float; #X text 12 5 KEYWORDS signal abstraction array needs_work (example patch); #X text 12 245 AUTHOR Tom Schouten <[email protected]>; #X text 12 25 LICENSE GPL v2; #X restore 398 277 pd META; #X obj 33 32 64k ------;
#N canvas 0 0 450 300 10; #X text 102 32 a beat shuffler using raw 64k/break sample banks; #X obj 33 32 64k ------;
19
signal abstraction array needs_work (example patch)
an overlap add tabread~ clone
create a purr-data patch that matches the following description and keywords.
Description: an overlap add tabread~ clone, Keywords: signal abstraction array needs_work (example patch)
beta-help.pd
externals\maxlib\beta-help.pd
#N canvas 0 26 487 308 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 139 94 5 0 0 0 - - -; #X obj 70 140 beta 0.78 1.3; #X text 192 95 a; #X floatatom 209 116 5 0 0 0 - - -; #X text 262 117 b; #X text 39 21 beta :: beta distributed random numbers; #N canvas 293 158 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 125 OUTLET_0 float; #X text 12 5 KEYWORDS control random; #X text 12 45 DESCRIPTION beta distributed random numbers; #X text 12 65 INLET_0 bang; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X restore 425 279 pd META; #X connect 0 0 3 0; #X connect 2 0 3 1; #X connect 3 0 1 0; #X connect 5 0 3 2;
#N canvas 0 26 487 308 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 139 94 5 0 0 0 - - -; #X obj 70 140 beta 0.78 1.3; #X text 192 95 a; #X floatatom 209 116 5 0 0 0 - - -; #X text 262 117 b; #X text 39 21 beta :: beta distributed random numbers; #X connect 0 0 3 0; #X connect 2 0 3 1; #X connect 3 0 1 0; #X connect 5 0 3 2;
24
control random
beta distributed random numbers
create a purr-data patch that matches the following description and keywords.
Description: beta distributed random numbers, Keywords: control random
lbang-help.pd
abstractions\jmmmp\lbang-help.pd
#N canvas 125 122 377 220 10; #X text 12 167 (C) 2006 Jo�o Pais - [email protected]; #X text 12 187 Released under the BSD License; #X obj 68 103 lbang; #X text 216 61 Inlets; #X text 216 111 Outlets; #X text 12 10 [lbang] - loadbang which can be triggered more often ; #X text 216 81 - bang; #X text 216 131 - loadbang / bang; #X obj 68 73 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 68 123 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 14 31 Recomended to initialize and re-initialize patches.; #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 135 VERSION 2006; #X text 12 5 DESCRIPTION loadbang which can be triggered more often ; #X text 12 35 KEYWORDS loadbang; #X text 14 165 INLET_0 - bang; #X text 14 185 OUTLET_0 - loadbang / bang; #X restore 322 186 pd META; #X connect 2 0 9 0; #X connect 8 0 2 0;
#N canvas 125 122 377 220 10; #X text 12 167 (C) 2006 Jo�o Pais - [email protected]; #X text 12 187 Released under the BSD License; #X obj 68 103 lbang; #X text 216 61 Inlets; #X text 216 111 Outlets; #X text 12 10 [lbang] - loadbang which can be triggered more often ; #X text 216 81 - bang; #X text 216 131 - loadbang / bang; #X obj 68 73 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 68 123 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 14 31 Recomended to initialize and re-initialize patches.; #X connect 2 0 9 0; #X connect 8 0 2 0;
25
loadbang
loadbang which can be triggered more often
create a purr-data patch that matches the following description and keywords.
Description: loadbang which can be triggered more often, Keywords: loadbang
wavinfo-help.pd
externals\ext13\wavinfo-help.pd
#N canvas 0 31 450 373 12; #X obj 112 139 openpanel; #X obj 112 165 wavinfo; #X floatatom 45 228 20 0 0 3 samples - -; #X floatatom 195 228 5 0 0 3 channels - -; #X floatatom 262 229 5 0 0 3 sample_size - -; #X floatatom 347 229 5 0 0 3 bitrate - -; #X obj 112 109 bng 25 250 50 0 empty empty empty 17 7 0 10 -204786 -1 -1; #X text 24 52 open a .wav file to see get the information about it: ; #X text 22 36 [wavinfo] outputs information about a .wav file \,; #N canvas 460 159 494 344 META 0; #X text 12 185 RELEASE_DATE 2009-06-12; #X text 12 205 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 5 KEYWORDS signal nonlocal; #X text 12 165 AUTHOR [email protected]; #X text 12 25 LICENSE GPL v2; #X text 12 45 DESCRIPTION outputs information about a .wav file; #X text 12 65 INLET_0 symbol; #X text 12 85 OUTLET_0 float; #X text 12 105 OUTLET_1 float; #X text 12 125 OUTLET_2 float; #X text 12 145 OUTLET_3 float; #X restore 381 333 pd META; #X connect 0 0 1 0; #X connect 1 0 2 0; #X connect 1 1 3 0; #X connect 1 2 4 0; #X connect 1 3 5 0; #X connect 6 0 0 0;
#N canvas 0 31 450 373 12; #X obj 112 139 openpanel; #X obj 112 165 wavinfo; #X floatatom 45 228 20 0 0 3 samples - -; #X floatatom 195 228 5 0 0 3 channels - -; #X floatatom 262 229 5 0 0 3 sample_size - -; #X floatatom 347 229 5 0 0 3 bitrate - -; #X obj 112 109 bng 25 250 50 0 empty empty empty 17 7 0 10 -204786 -1 -1; #X text 24 52 open a .wav file to see get the information about it: ; #X text 22 36 [wavinfo] outputs information about a .wav file \,; #X connect 0 0 1 0; #X connect 1 0 2 0; #X connect 1 1 3 0; #X connect 1 2 4 0; #X connect 1 3 5 0; #X connect 6 0 0 0;
29
signal nonlocal
outputs information about a .wav file
create a purr-data patch that matches the following description and keywords.
Description: outputs information about a .wav file, Keywords: signal nonlocal
upsample-help.pd
externals\mapping\upsample-help.pd
#N canvas 1 53 367 339 10; #X msg 83 96 1; #X obj 83 226 print; #X obj 204 227 print ---------; #X obj 83 140 trigger float bang; #X obj 98 119 hsl 128 15 0 127 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 83 200 upsample 3; #X obj 158 177 hsl 128 15 0 10 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X floatatom 162 201 5 0 0 0 - - -; #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 5 KEYWORDS control abstraction; #X text 12 45 DESCRIPTION increase the sampling rate; #X text 12 65 INLET_0 anything; #X text 12 105 OUTLET_0 list; #X restore 307 309 pd META; #X text 79 72 increase the sampling rate; #X connect 0 0 3 0; #X connect 3 0 5 0; #X connect 3 1 2 0; #X connect 4 0 3 0; #X connect 5 0 1 0; #X connect 6 0 5 1; #X connect 6 0 7 0;
#N canvas 1 53 367 339 10; #X msg 83 96 1; #X obj 83 226 print; #X obj 204 227 print ---------; #X obj 83 140 trigger float bang; #X obj 98 119 hsl 128 15 0 127 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 83 200 upsample 3; #X obj 158 177 hsl 128 15 0 10 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X floatatom 162 201 5 0 0 0 - - -; #X text 79 72 increase the sampling rate; #X connect 0 0 3 0; #X connect 3 0 5 0; #X connect 3 1 2 0; #X connect 4 0 3 0; #X connect 5 0 1 0; #X connect 6 0 5 1; #X connect 6 0 7 0;
27
control abstraction
increase the sampling rate
create a purr-data patch that matches the following description and keywords.
Description: increase the sampling rate, Keywords: control abstraction
3.0.events.pd
packages\win64_inno\build\doc\manuals\pd-msg\1.msg_and_patch\3.0.events.pd
#N canvas 317 86 381 325 10; #X msg 36 86 click \$1 \$2 \$3 \$4; #X obj 111 182 key; #X floatatom 111 208 0 0 0 0 - - -; #X floatatom 50 184 0 0 0 0 - - -; #X msg 50 158 0; #X msg 6 6 bang; #X text 56 41 left; #X text 124 41 rigth; #X text 70 4 Msg-dealing with events :; #X text 89 28 click; #X text 218 37 \$1 x; #X text 218 52 \$2 y; #X obj 36 290 s pd-3.0.events.pd; #X msg 36 129 mouseup \$1 \$2 \$4; #X msg 113 60 15 15 0 8; #X msg 36 60 15 15 0 1; #X msg 36 257 motion \$1 \$2 \$4; #X msg 36 209 key 1 \$1 0; #X text 274 84 0:nomod \; 1 shift \; 2 crtl \; 3 alt \; 4 right click) ; #X text 218 82 \$4 mod :; #X text 218 67 \$3 (unused ???); #X text 73 230 \$1 : number of the key; #N canvas 218 113 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 simulating mouse and key events with messages to a canvas; #X text 12 44 LICENSE public domain; #X text 12 5 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial ; #X restore 325 297 pd META; #X connect 0 0 12 0; #X connect 1 0 2 0; #X connect 3 0 17 0; #X connect 4 0 3 0; #X connect 13 0 12 0; #X connect 14 0 0 0; #X connect 15 0 0 0; #X connect 16 0 12 0; #X connect 17 0 12 0;
#N canvas 317 86 381 325 10; #X msg 36 86 click \$1 \$2 \$3 \$4; #X obj 111 182 key; #X floatatom 111 208 0 0 0 0 - - -; #X floatatom 50 184 0 0 0 0 - - -; #X msg 50 158 0; #X msg 6 6 bang; #X text 56 41 left; #X text 124 41 rigth; #X text 70 4 Msg-dealing with events :; #X text 89 28 click; #X text 218 37 \$1 x; #X text 218 52 \$2 y; #X obj 36 290 s pd-3.0.events.pd; #X msg 36 129 mouseup \$1 \$2 \$4; #X msg 113 60 15 15 0 8; #X msg 36 60 15 15 0 1; #X msg 36 257 motion \$1 \$2 \$4; #X msg 36 209 key 1 \$1 0; #X text 274 84 0:nomod \; 1 shift \; 2 crtl \; 3 alt \; 4 right click) ; #X text 218 82 \$4 mod :; #X text 218 67 \$3 (unused ???); #X text 73 230 \$1 : number of the key; #X connect 0 0 12 0; #X connect 1 0 2 0; #X connect 3 0 17 0; #X connect 4 0 3 0; #X connect 13 0 12 0; #X connect 14 0 0 0; #X connect 15 0 0 0; #X connect 16 0 12 0; #X connect 17 0 12 0;
38
control canvas_op nonlocal dynamic_patching tutorial
simulating mouse and key events with messages to a canvas
create a purr-data patch that matches the following description and keywords.
Description: simulating mouse and key events with messages to a canvas, Keywords: control canvas_op nonlocal dynamic_patching tutorial
ascii2int-help.pd
externals\hcs\ascii2int-help.pd
#N canvas 0 26 462 276 10; #X floatatom 253 143 5 0 0 0 - - -; #X obj 241 191 ascii2int; #X msg 305 168 bang; #X msg 192 168 bang; #X text 20 169 output current value -2; #X text 343 168 <-- reset; #X floatatom 241 220 0 0 0 0 - - -; #X obj 241 117 int; #X text 38 28 convert a stream of ASCII digits to a single int value ; #X msg 242 63 49 52 57 32; #X msg 138 63 53 56 49 50 1; #X obj 241 240 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 241 95 zexy/drip 500; #N canvas 404 246 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 conversion abstraction; #X text 12 45 DESCRIPTION convert a stream of ASCII digits to a single int value; #X text 12 75 INLET_0 float; #X text 12 95 OUTLET_0 float; #X restore 412 256 pd META; #X connect 1 0 6 0; #X connect 2 0 1 1; #X connect 3 0 1 0; #X connect 6 0 11 0; #X connect 7 0 0 0; #X connect 7 0 1 0; #X connect 9 0 12 0; #X connect 10 0 12 0; #X connect 12 0 7 0;
#N canvas 0 26 462 276 10; #X floatatom 253 143 5 0 0 0 - - -; #X obj 241 191 ascii2int; #X msg 305 168 bang; #X msg 192 168 bang; #X text 20 169 output current value -2; #X text 343 168 <-- reset; #X floatatom 241 220 0 0 0 0 - - -; #X obj 241 117 int; #X text 38 28 convert a stream of ASCII digits to a single int value ; #X msg 242 63 49 52 57 32; #X msg 138 63 53 56 49 50 1; #X obj 241 240 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X obj 241 95 zexy/drip 500; #X connect 1 0 6 0; #X connect 2 0 1 1; #X connect 3 0 1 0; #X connect 6 0 11 0; #X connect 7 0 0 0; #X connect 7 0 1 0; #X connect 9 0 12 0; #X connect 10 0 12 0; #X connect 12 0 7 0;
32
control conversion abstraction
convert a stream of ASCII digits to a single int value
create a purr-data patch that matches the following description and keywords.
Description: convert a stream of ASCII digits to a single int value, Keywords: control conversion abstraction
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
flist2tab-help.pd
externals\mrpeach\flist2tab\flist2tab-help.pd
#N canvas 1 53 420 332 10; #X obj -12 175 table pig; #X obj 115 203 flist2tab pig; #X obj 92 163 any2string; #X msg 92 140 Hello; #X floatatom 190 162 5 0 0 0 - - -; #X msg 6 77 81 28 0 33 55 1 2 3; #X text -45 -12 flist2tab loads floats or lists of floats into a table ; #X text -45 4 at an offset determined by a float in the second inlet. ; #X text -45 20 Negative offsets will be ignored.; #X obj -12 152 table twig; #X msg 36 107 set twig; #X text 93 106 set the working table; #X text 203 203 argument is table name; #X text -45 36 Offsets greater than the table length cause the table to be resized to fit.; #X text 224 162 default offset is 0; #X floatatom 62 220 7 0 0 0 - - -; #X text 108 220 Array size is output after each input.; #X text 202 260 2009_01_28 Martin Peach; #N canvas 425 246 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 Martin Peach; #X text 12 75 INLET_0 float list set; #X text 12 95 INLET_1 float; #X text 12 115 OUTLET_0 float; #X text 12 45 DESCRIPTION load floats or lists of floats into a table at an offset determined by a float in the second inlet; #X text 12 5 KEYWORDS control array list_op conversion; #X text 12 25 LICENSE GPL v2 or later; #X restore 314 297 pd META; #X connect 1 0 15 0; #X connect 2 0 1 0; #X connect 3 0 2 0; #X connect 4 0 1 1; #X connect 5 0 1 0; #X connect 10 0 1 0;
#N canvas 1 53 420 332 10; #X obj -12 175 table pig; #X obj 115 203 flist2tab pig; #X obj 92 163 any2string; #X msg 92 140 Hello; #X floatatom 190 162 5 0 0 0 - - -; #X msg 6 77 81 28 0 33 55 1 2 3; #X text -45 -12 flist2tab loads floats or lists of floats into a table ; #X text -45 4 at an offset determined by a float in the second inlet. ; #X text -45 20 Negative offsets will be ignored.; #X obj -12 152 table twig; #X msg 36 107 set twig; #X text 93 106 set the working table; #X text 203 203 argument is table name; #X text -45 36 Offsets greater than the table length cause the table to be resized to fit.; #X text 224 162 default offset is 0; #X floatatom 62 220 7 0 0 0 - - -; #X text 108 220 Array size is output after each input.; #X text 202 260 2009_01_28 Martin Peach; #X connect 1 0 15 0; #X connect 2 0 1 0; #X connect 3 0 2 0; #X connect 4 0 1 1; #X connect 5 0 1 0; #X connect 10 0 1 0;
35
control array list_op conversion
load floats or lists of floats into a table at an offset determined by a float in the second inlet
create a purr-data patch that matches the following description and keywords.
Description: load floats or lists of floats into a table at an offset determined by a float in the second inlet, Keywords: control array list_op conversion
tblock-help.pd
externals\creb\doc\tblock-help.pd
#N canvas 0 26 467 246 10; #X text 95 58 right inlet is also "active"; #X text 95 113 for spectral domain processing; #X text 95 14 tblock: compute block relative time delays; #X text 96 28 out = left + right * (blocksize / sys_samplerate); #X text 96 98 main usage is to compute block synchronous time delays ; #X obj 22 20 tblock; #N canvas 200 78 494 325 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 float; #X text 12 105 OUTLET_0 float; #X text 12 45 DESCRIPTION block relative time conversion; #X text 12 5 KEYWORDS control abstraction needs_work (example patch) ; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR Tom Schouten <[email protected]>; #X restore 416 225 pd META;
#N canvas 0 26 467 246 10; #X text 95 58 right inlet is also "active"; #X text 95 113 for spectral domain processing; #X text 95 14 tblock: compute block relative time delays; #X text 96 28 out = left + right * (blocksize / sys_samplerate); #X text 96 98 main usage is to compute block synchronous time delays ; #X obj 22 20 tblock;
17
control abstraction needs_work (example patch)
block relative time conversion
create a purr-data patch that matches the following description and keywords.
Description: block relative time conversion, Keywords: control abstraction needs_work (example patch)
all_about_expr_multiline.pd
packages\win64_inno\build\doc\5.reference\all_about_expr_multiline.pd
#N canvas 434 59 448 282 10; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header expr_multiline 20 10 1 18 -261106 -33289 0; #X obj 407 2 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X floatatom 23 196 5 0 0 0 - - -, f 5; #X floatatom 102 196 5 0 0 0 - - -, f 5; #X floatatom 23 93 5 0 0 0 - - -, f 5; #X floatatom 181 196 0 0 0 0 - - -; #X floatatom 260 196 5 0 0 0 - - -, f 5; #X obj 23 119 expr $f1 \; $f1 * 2 \; pow($f1 \, 2) \; if($f1%128 < 64 \, $f1%128 \, 128 - $f1%128); #X text 260 227 back down; #X text 259 213 count to 64 \, then; #X text 20 37 A semicolon can be used to enter multiple expressions in [expr] \, [expr~] \, and [fexpr~]. For each new statement \, an extra outlet is added to the object.; #X text 273 174 semicolon; #X text 272 165 doesn't require a; #X text 272 155 the last statement; #X obj 1 260 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 380 135 494 156 META 0; #X text 12 105 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 45 KEYWORDS conversion; #X text 12 85 LIBRARY PDDP; #X text 12 65 DESCRIPTION Like to enter multiple expressions inside expr? You can if you want \, and this patch tells you how...; #X text 12 25 NAME expr fexpr~ expr~ all_about_pd; #X restore 392 262 pd META; #N canvas 224 164 428 129 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 [expr] Multiline- Related Objects; #X restore 103 262 pd Related_objects; #X obj 6 262 pddp/pddplink all_about.pd -text All About Pd; #X connect 4 0 7 0; #X connect 7 0 2 0; #X connect 7 1 3 0; #X connect 7 2 5 0; #X connect 7 3 6 0;
#N canvas 434 59 448 282 10; #X floatatom 23 196 5 0 0 0 - - -, f 5; #X floatatom 102 196 5 0 0 0 - - -, f 5; #X floatatom 23 93 5 0 0 0 - - -, f 5; #X floatatom 181 196 0 0 0 0 - - -; #X floatatom 260 196 5 0 0 0 - - -, f 5; #X obj 23 119 expr $f1 \; $f1 * 2 \; pow($f1 \, 2) \; if($f1%128 < 64 \, $f1%128 \, 128 - $f1%128); #X text 260 227 back down; #X text 259 213 count to 64 \, then; #X text 20 37 A semicolon can be used to enter multiple expressions in [expr] \, [expr~] \, and [fexpr~]. For each new statement \, an extra outlet is added to the object.; #X text 273 174 semicolon; #X text 272 165 doesn't require a; #X text 272 155 the last statement; #X connect 4 0 7 0; #X connect 7 0 2 0; #X connect 7 1 3 0; #X connect 7 2 5 0; #X connect 7 3 6 0;
33
conversion
Like to enter multiple expressions inside expr? You can if you want \, and this patch tells you how...
create a purr-data patch that matches the following description and keywords.
Description: Like to enter multiple expressions inside expr? You can if you want \, and this patch tells you how..., Keywords: conversion
screensaver-help.pd
externals\hcs\grabbag\screensaver-help.pd
#N canvas 0 31 450 300 10; #X obj 127 148 screensaver; #X obj 130 96 hsl 128 15 0 127 0 0 empty empty empty -2 -8 0 10 -262144 -1 -1 0 1; #X text 43 31 set the screensaver timer (in seconds). 0 turns the screensaver off; #X floatatom 141 126 5 0 0 1 seconds - -; #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 65 INLET_0 float; #X text 12 5 KEYWORDS control filesystem; #X text 12 45 DESCRIPTION set the screensaver timer (in seconds); #X restore 392 266 pd META; #X connect 1 0 0 0; #X connect 1 0 3 0;
#N canvas 0 31 450 300 10; #X obj 127 148 screensaver; #X obj 130 96 hsl 128 15 0 127 0 0 empty empty empty -2 -8 0 10 -262144 -1 -1 0 1; #X text 43 31 set the screensaver timer (in seconds). 0 turns the screensaver off; #X floatatom 141 126 5 0 0 1 seconds - -; #X connect 1 0 0 0; #X connect 1 0 3 0;
15
control filesystem
set the screensaver timer (in seconds)
create a purr-data patch that matches the following description and keywords.
Description: set the screensaver timer (in seconds), Keywords: control filesystem
relativepath-help.pd
externals\moonlib\relativepath-help.pd
#N canvas 0 31 535 379 10; #X text 17 352 (c) Antoine Rousseau 2004; #X obj 33 108 absolutepath; #X symbolatom 33 131 0 0 0 0 - - -; #X msg 33 51 symbol absolutepath.pd; #X obj 33 220 relativepath; #X symbolatom 33 245 0 0 0 0 - - -; #X text 14 6 absolutepath / relativepath : use filenames relatively to the patch's path.; #N canvas 380 146 494 344 META 0; #X text 12 25 LICENSE GPL v2; #X text 12 5 KEYWORDS control patchfile_op; #X text 12 65 INLET_0 symbol; #X text 12 85 OUTLET_0 symbol; #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 45 DESCRIPTION use filename relatively to the patch's path ; #X restore 475 348 pd META; #X connect 1 0 2 0; #X connect 2 0 4 0; #X connect 3 0 1 0; #X connect 4 0 5 0;
#N canvas 0 31 535 379 10; #X text 17 352 (c) Antoine Rousseau 2004; #X obj 33 108 absolutepath; #X symbolatom 33 131 0 0 0 0 - - -; #X msg 33 51 symbol absolutepath.pd; #X obj 33 220 relativepath; #X symbolatom 33 245 0 0 0 0 - - -; #X text 14 6 absolutepath / relativepath : use filenames relatively to the patch's path.; #X connect 1 0 2 0; #X connect 2 0 4 0; #X connect 3 0 1 0; #X connect 4 0 5 0;
21
control patchfile_op
use filename relatively to the patch's path
create a purr-data patch that matches the following description and keywords.
Description: use filename relatively to the patch's path, Keywords: control patchfile_op
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
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
step-help.pd
externals\maxlib\step-help.pd
#N canvas 0 26 510 321 12; #X floatatom 33 229 5 0 0 0 - - -; #X text 72 7 step :: output sequence of numbers (similar to 'line') ; #X text 138 25 written by Olaf Matthes ([email protected]); #X text 222 250 stepsize :: step between two numbers; #X msg 33 76 23 6000 2; #X msg 62 119 230; #X obj 101 282 line; #X text 98 117 send a single number to jump; #X text 121 77 send a triplet to step to a new value; #X text 22 282 see also:; #X msg 80 146 stop; #X text 127 147 "stop" message to stop output; #X text 121 92 <new value> <time> <step>; #X text 123 196 step <value> <stepsize>; #X text 221 234 value :: value to start with; #X obj 33 195 step 100 3; #N canvas 292 198 494 344 META 0; #X text 12 170 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 150 AUTHOR Olaf Matthes <[email protected]>; #X text 12 90 INLET_1 float; #X text 12 110 INLET_2 float; #X text 12 130 OUTLET_0 float; #X text 12 45 DESCRIPTION output sequence of numbers ( similar to line ); #X text 12 5 KEYWORDS control ramp; #X text 12 70 INLET_0 float list stop; #X restore 448 292 pd META; #X connect 4 0 15 0; #X connect 5 0 15 0; #X connect 10 0 15 0; #X connect 15 0 0 0;
#N canvas 0 26 510 321 12; #X floatatom 33 229 5 0 0 0 - - -; #X text 72 7 step :: output sequence of numbers (similar to 'line') ; #X text 138 25 written by Olaf Matthes ([email protected]); #X text 222 250 stepsize :: step between two numbers; #X msg 33 76 23 6000 2; #X msg 62 119 230; #X obj 101 282 line; #X text 98 117 send a single number to jump; #X text 121 77 send a triplet to step to a new value; #X text 22 282 see also:; #X msg 80 146 stop; #X text 127 147 "stop" message to stop output; #X text 121 92 <new value> <time> <step>; #X text 123 196 step <value> <stepsize>; #X text 221 234 value :: value to start with; #X obj 33 195 step 100 3; #X connect 4 0 15 0; #X connect 5 0 15 0; #X connect 10 0 15 0; #X connect 15 0 0 0;
32
control ramp
output sequence of numbers ( similar to line )
create a purr-data patch that matches the following description and keywords.
Description: output sequence of numbers ( similar to line ), Keywords: control ramp
uid2username-help.pd
externals\hcs\uid2username-help.pd
#N canvas 0 26 429 292 10; #X msg 14 148 bang; #X obj 31 240 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X msg 272 159 bang; #X obj 142 240 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 145 262 ^-- bang if not found; #X text 12 14 convert a UID to a username; #X symbolatom 56 242 0 0 0 0 - - -; #X msg 143 162 1; #X symbolatom 272 242 0 0 0 0 - - -; #X obj 59 93 hsl 128 15 0 127 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X floatatom 56 123 5 0 0 0 - - -; #X obj 56 190 uid2username; #X obj 272 201 uid2username 0; #N canvas 407 170 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 v3; #X text 12 145 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control; #X text 12 45 DESCRIPTION convert a UID to a username; #X text 12 65 INLET_0 float bang; #X text 12 85 INLET_0 float; #X text 12 105 OUTLET_0 symbol; #X text 12 125 OUTLET_1 bang; #X restore 371 262 pd META; #X connect 0 0 11 0; #X connect 2 0 12 0; #X connect 7 0 11 1; #X connect 9 0 10 0; #X connect 10 0 11 0; #X connect 11 0 1 0; #X connect 11 0 6 0; #X connect 11 1 3 0; #X connect 12 0 8 0;
#N canvas 0 26 429 292 10; #X msg 14 148 bang; #X obj 31 240 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X msg 272 159 bang; #X obj 142 240 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 145 262 ^-- bang if not found; #X text 12 14 convert a UID to a username; #X symbolatom 56 242 0 0 0 0 - - -; #X msg 143 162 1; #X symbolatom 272 242 0 0 0 0 - - -; #X obj 59 93 hsl 128 15 0 127 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X floatatom 56 123 5 0 0 0 - - -; #X obj 56 190 uid2username; #X obj 272 201 uid2username 0; #X connect 0 0 11 0; #X connect 2 0 12 0; #X connect 7 0 11 1; #X connect 9 0 10 0; #X connect 10 0 11 0; #X connect 11 0 1 0; #X connect 11 0 6 0; #X connect 11 1 3 0; #X connect 12 0 8 0;
34
control
convert a UID to a username
create a purr-data patch that matches the following description and keywords.
Description: convert a UID to a username, Keywords: control
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
beta-help.pd
externals\maxlib\beta-help.pd
#N canvas 0 26 487 308 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 139 94 5 0 0 0 - - -; #X obj 70 140 beta 0.78 1.3; #X text 192 95 a; #X floatatom 209 116 5 0 0 0 - - -; #X text 262 117 b; #X text 39 21 beta :: beta distributed random numbers; #N canvas 293 158 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 125 OUTLET_0 float; #X text 12 5 KEYWORDS control random; #X text 12 45 DESCRIPTION beta distributed random numbers; #X text 12 65 INLET_0 bang; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X restore 425 279 pd META; #X connect 0 0 3 0; #X connect 2 0 3 1; #X connect 3 0 1 0; #X connect 5 0 3 2;
#N canvas 0 26 487 308 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 139 94 5 0 0 0 - - -; #X obj 70 140 beta 0.78 1.3; #X text 192 95 a; #X floatatom 209 116 5 0 0 0 - - -; #X text 262 117 b; #X text 39 21 beta :: beta distributed random numbers; #X connect 0 0 3 0; #X connect 2 0 3 1; #X connect 3 0 1 0; #X connect 5 0 3 2;
24
control random
beta distributed random numbers
create a purr-data patch that matches the following description and keywords.
Description: beta distributed random numbers, Keywords: control random
hid_average-help.pd
externals\hid\hid_average-help.pd
#N canvas 0 31 479 396 10; #X text 27 340 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 244 354 released under the GNU GPL; #X floatatom 122 189 5 0 0 0 - - -; #X floatatom 102 251 5 0 0 0 - - -; #X text 98 303 For more info:; #X obj 223 194 hsl 85 18 0.1 10 1 1 empty empty average_count 0 9 1 12 -228992 -1 -1 5800 0; #X floatatom 219 223 5 0 0 0 - - -; #X obj 102 131 noise4hidhelp; #X obj 105 281 hsl 250 15 0 1 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 125 158 hsl 250 15 0 1 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 5 2 cnv 15 450 20 empty empty hid_average 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_average; #X text 18 36 Smooths a stream of numbers using weighted averaging. By default \, the average is the last 10 values. You can set this using the right inlet.; #X obj 102 95 tgl 30 0 empty empty start 1 15 1 12 -90049 -1 -1 0 1 ; #N canvas 504 253 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; #X text 12 85 INLET_0 float; #X text 12 125 OUTLET_0 float; #X text 12 145 AUTHOR Hans-Christoph Steiner; #X text 12 45 DESCRIPTION smooths a stream of numbers using weighted averaging; #X text 12 105 INLET_1 float; #X text 12 5 KEYWORDS control conversion abstraction; #X restore 426 369 pd META; #X connect 3 0 8 0; #X connect 5 0 12 1; #X connect 6 0 12 1; #X connect 7 0 9 0; #X connect 7 0 12 0; #X connect 9 0 2 0; #X connect 12 0 3 0; #X connect 14 0 7 0;
#N canvas 0 31 479 396 10; #X text 27 340 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 244 354 released under the GNU GPL; #X floatatom 122 189 5 0 0 0 - - -; #X floatatom 102 251 5 0 0 0 - - -; #X text 98 303 For more info:; #X obj 223 194 hsl 85 18 0.1 10 1 1 empty empty average_count 0 9 1 12 -228992 -1 -1 5800 0; #X floatatom 219 223 5 0 0 0 - - -; #X obj 102 131 noise4hidhelp; #X obj 105 281 hsl 250 15 0 1 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 125 158 hsl 250 15 0 1 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 102 221 hid/hid_average; #X text 18 36 Smooths a stream of numbers using weighted averaging. By default \, the average is the last 10 values. You can set this using the right inlet.; #X obj 102 95 tgl 30 0 empty empty start 1 15 1 12 -90049 -1 -1 0 1 ; #X connect 3 0 8 0; #X connect 5 0 12 1; #X connect 6 0 12 1; #X connect 7 0 9 0; #X connect 7 0 12 0; #X connect 9 0 2 0; #X connect 12 0 3 0; #X connect 14 0 7 0;
34
control conversion abstraction
smooths a stream of numbers using weighted averaging
create a purr-data patch that matches the following description and keywords.
Description: smooths a stream of numbers using weighted averaging, Keywords: control conversion abstraction
1.3.show_hide.pd
packages\win64_inno\build\doc\manuals\pd-msg\1.msg_and_patch\1.3.show_hide.pd
#N canvas 294 79 383 241 10; #N canvas 209 154 262 142 my-subpatch 0; #X text 37 40 This is the sub patch; #X restore 215 98 pd my-subpatch; #X msg 33 62 \; pd-my-subpatch vis 1; #X msg 37 127 \; pd-my-subpatch vis 0; #X text 43 42 pop-up; #X text 40 109 close; #X text 13 17 pop-up and close a subpatch :; #N canvas 219 138 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 65 DESCRIPTION how to show/hide a patch using messages; #X text 12 44 LICENSE public domain; #X text 12 5 KEYWORDS control canvas_op nonlocal dynamic_patching tutorial ; #X restore 329 216 pd META;
#N canvas 294 79 383 241 10; #X msg 33 62 \; pd-my-subpatch vis 1; #X msg 37 127 \; pd-my-subpatch vis 0; #X text 43 42 pop-up; #X text 40 109 close; #X text 13 17 pop-up and close a subpatch :;
15
control canvas_op nonlocal dynamic_patching tutorial
how to show/hide a patch using messages
create a purr-data patch that matches the following description and keywords.
Description: how to show/hide a patch using messages, Keywords: control canvas_op nonlocal dynamic_patching tutorial
vectorpack-help.pd
externals\markex\vectorpack-help.pd
#N canvas 252 599 522 314 10; #N canvas 456 153 494 344 META 0; #X text 12 125 AUTHOR Mark Danks; #X text 12 25 LICENSE GPL v2; #X text 12 145 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42. \, helppatch by IOhannes m zmölnig; #X text 12 5 KEYWORDS control vector; #X text 12 65 INLET_0 list; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 list; #X text 11 45 DESCRIPTION append a single value to a vector; #X restore 388 269 pd META; #X msg 64 86 1 2 3; #X msg 175 86 7; #X obj 64 116 vectorpack 10; #X text 27 25 MarkEx vector operation: create a new vector by appending a float to vector; #X obj 64 146 print vectorpack; #X text 49 183 a more versatile approach is to use the [list append] object:; #X msg 64 216 1 2 3; #X msg 175 216 7; #X obj 64 246 list append 10; #X obj 64 276 print listappend; #X text 212 139 a "vector" is simply a list of numbers.; #X connect 1 0 3 0; #X connect 2 0 3 1; #X connect 3 0 5 0; #X connect 7 0 9 0; #X connect 8 0 9 1; #X connect 9 0 10 0;
#N canvas 252 599 522 314 10; #X msg 64 86 1 2 3; #X msg 175 86 7; #X obj 64 116 vectorpack 10; #X text 27 25 MarkEx vector operation: create a new vector by appending a float to vector; #X obj 64 146 print vectorpack; #X text 49 183 a more versatile approach is to use the [list append] object:; #X msg 64 216 1 2 3; #X msg 175 216 7; #X obj 64 246 list append 10; #X obj 64 276 print listappend; #X text 212 139 a "vector" is simply a list of numbers.; #X connect 1 0 3 0; #X connect 2 0 3 1; #X connect 3 0 5 0; #X connect 7 0 9 0; #X connect 8 0 9 1; #X connect 9 0 10 0;
28
control vector
append a single value to a vector
create a purr-data patch that matches the following description and keywords.
Description: append a single value to a vector, Keywords: control vector
hid_rel2abs-help.pd
externals\hid\hid_rel2abs-help.pd
#N canvas 487 359 469 312 10; #X obj 5 2 cnv 15 450 20 empty empty hid_rel2abs 2 11 1 18 -233017 -66577 0; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 27 270 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 244 284 released under the GNU GPL; #X text 30 38 Converts relative axis data into an absolute position. ; #X obj 175 116 mouse; #X msg 193 73 open 1; #X msg 204 91 open 2; #X obj 157 75 tgl 25 0 empty empty empty 0 -6 0 8 -24198 -1 -1 0 1 ; #X floatatom 112 207 5 0 0 0 - - -; #X floatatom 153 207 5 0 0 0 - - -; #X floatatom 252 208 5 0 0 0 - - -; #X floatatom 211 208 5 0 0 0 - - -; #X obj 252 174 hid/hid_rel2abs 0 100; #X obj 73 175 hid/hid_rel2abs -10 10; #X text 98 240 For more info:; #X msg 73 129 reset; #X msg 284 129 reset; #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 convert relative axis data into an absolute position.; #X text 12 75 INLET_0 float reset; #X text 12 5 KEYWORDS control abstraction; #X restore 415 267 pd META; #X connect 5 0 10 0; #X connect 5 0 14 0; #X connect 5 1 12 0; #X connect 5 1 13 0; #X connect 6 0 5 0; #X connect 7 0 5 0; #X connect 8 0 5 0; #X connect 13 0 11 0; #X connect 14 0 9 0; #X connect 17 0 14 0;
#N canvas 487 359 469 312 10; #X text 27 270 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 244 284 released under the GNU GPL; #X text 30 38 Converts relative axis data into an absolute position. ; #X obj 175 116 mouse; #X msg 193 73 open 1; #X msg 204 91 open 2; #X obj 157 75 tgl 25 0 empty empty empty 0 -6 0 8 -24198 -1 -1 0 1 ; #X floatatom 112 207 5 0 0 0 - - -; #X floatatom 153 207 5 0 0 0 - - -; #X floatatom 252 208 5 0 0 0 - - -; #X floatatom 211 208 5 0 0 0 - - -; #X obj 252 174 hid/hid_rel2abs 0 100; #X obj 73 175 hid/hid_rel2abs -10 10; #X text 98 240 For more info:; #X msg 73 129 reset; #X msg 284 129 reset; #X connect 5 0 10 0; #X connect 5 0 14 0; #X connect 5 1 12 0; #X connect 5 1 13 0; #X connect 6 0 5 0; #X connect 7 0 5 0; #X connect 8 0 5 0; #X connect 13 0 11 0; #X connect 14 0 9 0; #X connect 17 0 14 0;
38
control abstraction
convert relative axis data into an absolute position.
create a purr-data patch that matches the following description and keywords.
Description: convert relative axis data into an absolute position., Keywords: control abstraction
expmap~-help.pd
externals\creb\doc\expmap~-help.pd
#N canvas 0 26 352 368 10; #X text 80 9 exponential map from (-1 \, 1) to (min \, max); #N canvas 331 92 494 345 META 0; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 85 INLET_1 float; #X text 12 45 DESCRIPTION exponential map from (-1 \, 1) to (min \, max); #X text 12 65 INLET_0 signal; #X text 12 105 INLET_2 float; #X text 12 125 OUTLET_0 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR Tom Schouten <[email protected]>; #X restore 302 347 pd META; #X obj 103 141 expmap~;
#N canvas 0 26 352 368 10; #X text 80 9 exponential map from (-1 \, 1) to (min \, max); #X obj 103 141 expmap~;
14
signal abstraction needs_work (example patch)
exponential map from (-1 \, 1) to (min \, max)
create a purr-data patch that matches the following description and keywords.
Description: exponential map from (-1 \, 1) to (min \, max), Keywords: signal abstraction needs_work (example patch)
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
ignore-help.pd
externals\maxlib\ignore-help.pd
#N canvas 0 26 464 328 12; #X floatatom 47 107 5 0 0 0 - - -; #X floatatom 47 225 5 0 0 0 - - -; #X text 122 197 creation argument = time in ms; #X floatatom 122 136 5 0 0 0 - - -; #X obj 47 167 ignore 500; #X text 177 136 time in ms a value has to; #X text 178 152 be present in order to get through; #X text 75 24 ignore :: lets information through; #X text 155 59 at input longer than N ms; #X text 73 258 note: input gets delayed by N milliseconds; #N canvas 481 26 494 344 META 0; #X text 12 160 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 140 AUTHOR Olaf Matthes <[email protected]>; #X text 12 100 INLET_1 float; #X text 12 120 OUTLET_0 float; #X text 12 5 KEYWORDS control filter; #X text 12 45 DESCRIPTION lets information through only when it was present at input longer than N ms; #X text 12 80 INLET_0 float; #X restore 392 294 pd META; #X text 154 41 only when it was present; #X connect 0 0 4 0; #X connect 3 0 4 1; #X connect 4 0 1 0;
#N canvas 0 26 464 328 12; #X floatatom 47 107 5 0 0 0 - - -; #X floatatom 47 225 5 0 0 0 - - -; #X text 122 197 creation argument = time in ms; #X floatatom 122 136 5 0 0 0 - - -; #X obj 47 167 ignore 500; #X text 177 136 time in ms a value has to; #X text 178 152 be present in order to get through; #X text 75 24 ignore :: lets information through; #X text 155 59 at input longer than N ms; #X text 73 258 note: input gets delayed by N milliseconds; #X text 154 41 only when it was present; #X connect 0 0 4 0; #X connect 3 0 4 1; #X connect 4 0 1 0;
25
control filter
lets information through only when it was present at input longer than N ms
create a purr-data patch that matches the following description and keywords.
Description: lets information through only when it was present at input longer than N ms, Keywords: control filter
vrmstodb-help.pd
externals\smlib\vrmstodb-help.pd
#N canvas 1 53 283 157 10; #X text 194 88 j#|@2002; #X obj 216 68 SMLib-help; #X text 10 6 frequency to midi on a vector; #X obj 15 56 vrmstodb; #X msg 15 33 100 97 94; #X obj 15 80 print vrmstodb; #N canvas 143 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 105 AUTHOR Johannes Taelman ([email protected]) ; #X text 12 65 INLET_0 list float; #X text 12 85 OUTLET_0 float list; #X text 12 5 KEYWORDS control list_op MIDI conversion; #X text 12 45 DESCRIPTION frequency to midi on a vector; #X restore 216 114 pd META; #X connect 3 0 5 0; #X connect 4 0 3 0;
#N canvas 1 53 283 157 10; #X text 194 88 j#|@2002; #X obj 216 68 SMLib-help; #X text 10 6 frequency to midi on a vector; #X obj 15 56 vrmstodb; #X msg 15 33 100 97 94; #X obj 15 80 print vrmstodb; #X connect 3 0 5 0; #X connect 4 0 3 0;
18
control list_op MIDI conversion
frequency to midi on a vector
create a purr-data patch that matches the following description and keywords.
Description: frequency to midi on a vector, Keywords: control list_op MIDI conversion
all_about_externals.pd
pd\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
highpass-help.pd
externals\ggee\filters\highpass-help.pd
#N canvas 0 26 421 418 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 10100 0; #X obj 270 97 hsl 128 17 0 100 0 1 empty empty bandwidth 5 9 0 10 -261682 -1 -1 6200 0; #X obj 176 185 highpass; #X obj 104 276 dac~; #X text 76 12 Highpass coefficients for biquad~; #X obj 113 244 *~ 0.1; #N canvas 317 264 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 highpass 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 397 pd META; #X connect 4 0 11 0; #X connect 5 0 6 0; #X connect 6 0 11 0; #X connect 6 1 11 1; #X connect 7 0 14 0; #X connect 8 0 7 0; #X connect 9 0 4 0; #X connect 10 0 5 0; #X connect 11 0 7 0; #X connect 14 0 12 0; #X connect 14 0 12 1;
#N canvas 0 26 421 418 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 10100 0; #X obj 270 97 hsl 128 17 0 100 0 1 empty empty bandwidth 5 9 0 10 -261682 -1 -1 6200 0; #X obj 176 185 highpass; #X obj 104 276 dac~; #X text 76 12 Highpass coefficients for biquad~; #X obj 113 244 *~ 0.1; #X connect 4 0 11 0; #X connect 5 0 6 0; #X connect 6 0 11 0; #X connect 6 1 11 1; #X connect 7 0 14 0; #X connect 8 0 7 0; #X connect 9 0 4 0; #X connect 10 0 5 0; #X connect 11 0 7 0; #X connect 14 0 12 0; #X connect 14 0 12 1;
37
control
highpass coefficients for biquad~
create a purr-data patch that matches the following description and keywords.
Description: highpass coefficients for biquad~, Keywords: control
ti_hihat-help.pd
externals\creb\doc\ti_hihat-help.pd
#N canvas 0 26 333 350 10; #N canvas 200 78 494 529 META 0; #X text 12 245 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 45 DESCRIPTION hihat gop object; #X text 12 5 KEYWORDS signal abstraction GUI needs_work (example patch) ; #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 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 OUTLET_0 signal; #X text 12 25 LICENSE GPL v2; #X text 12 225 AUTHOR Tom Schouten <[email protected]>; #X restore 278 327 pd META; #X obj 9 52 ti_hihat ----; #X coords 0 0 0.00245098 0.00260417 200 50 0;
#N canvas 0 26 333 350 10; #X obj 9 52 ti_hihat ----; #X coords 0 0 0.00245098 0.00260417 200 50 0;
18
signal abstraction GUI needs_work (example patch)
hihat gop object
create a purr-data patch that matches the following description and keywords.
Description: hihat gop object, Keywords: signal abstraction GUI needs_work (example patch)
strcat-help.pd
externals\markex\strcat-help.pd
#N canvas 1 53 454 304 10; #X obj 181 131 strcat foo; #X msg 147 58 symbol bar; #X symbolatom 181 182 0 0 0 0 - - -; #X text 16 255 [strcat] prepends its text to any symbol that is sent to it.; #X msg 173 79 symbol kneipe; #X msg 195 101 symbol d; #N canvas 457 170 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 115 AUTHOR Mark Danks; #X text 12 25 LICENSE GPL v2; #X text 12 45 DESCRIPTION prepend text to any symbol that is sent to the inlet; #X text 12 75 INLET_0 symbol; #X text 12 95 OUTLET_0 symbol; #X text 12 5 KEYWORDS control symbol_op; #X restore 401 276 pd META; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 4 0 0 0; #X connect 5 0 0 0;
#N canvas 1 53 454 304 10; #X obj 181 131 strcat foo; #X msg 147 58 symbol bar; #X symbolatom 181 182 0 0 0 0 - - -; #X text 16 255 [strcat] prepends its text to any symbol that is sent to it.; #X msg 173 79 symbol kneipe; #X msg 195 101 symbol d; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 4 0 0 0; #X connect 5 0 0 0;
20
control symbol_op
prepend text to any symbol that is sent to the inlet
create a purr-data patch that matches the following description and keywords.
Description: prepend text to any symbol that is sent to the inlet, Keywords: control symbol_op
hid2rad-help.pd
externals\hid\hid2rad-help.pd
#N canvas 0 36 471 311 10; #X obj 5 2 cnv 15 450 20 empty empty hid2rad 2 11 1 18 -233017 -66577 0; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 254 249 released under the GNU GPL; #X text 185 208 For more info:; #X text 40 234 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 276 148 related objects:; #X obj 233 164 hid/rad2hid; #X obj 308 164 hid/deg2hid; #X obj 383 164 hid/hid2deg; #X obj 69 150 hid/hid2rad; #X floatatom 69 185 9 0 0 1 radians - -; #X obj 72 85 hsl 128 15 0 1 0 0 empty empty hid 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 115 5 0 0 0 - - -; #X text 26 34 This object converts numbers from the [hid] range (0 to 1) to radians (-pi to pi) with the 0's lining up in the same place. ; #N canvas 504 253 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 85 INLET_0 float; #X text 12 105 OUTLET_0 float; #X text 12 125 AUTHOR Hans-Christoph Steiner; #X text 12 45 DESCRIPTION convert numbers from the [hid] range (0 to 1) to radians (-pi to pi) with the 0's lining up in the same place. ; #X text 12 5 KEYWORDS control conversion abstraction; #X restore 417 283 pd META; #X connect 9 0 10 0; #X connect 11 0 9 0; #X connect 12 0 9 0;
#N canvas 0 36 471 311 10; #X text 254 249 released under the GNU GPL; #X text 185 208 For more info:; #X text 40 234 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 276 148 related objects:; #X obj 233 164 hid/rad2hid; #X obj 308 164 hid/deg2hid; #X obj 383 164 hid/hid2deg; #X obj 69 150 hid/hid2rad; #X floatatom 69 185 9 0 0 1 radians - -; #X obj 72 85 hsl 128 15 0 1 0 0 empty empty hid 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 115 5 0 0 0 - - -; #X text 26 34 This object converts numbers from the [hid] range (0 to 1) to radians (-pi to pi) with the 0's lining up in the same place. ; #X connect 9 0 10 0; #X connect 11 0 9 0; #X connect 12 0 9 0;
27
control conversion abstraction
convert numbers from the [hid] range (0 to 1) to radians (-pi to pi) with the 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 [hid] range (0 to 1) to radians (-pi to pi) with the 0's lining up in the same place., Keywords: control conversion 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
cauchy-help.pd
externals\maxlib\cauchy-help.pd
#N canvas 0 31 487 308 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 185 103 5 0 0 0 - - -; #X obj 70 140 cauchy 0.5; #X text 238 104 alpha - governs spread; #X text 39 21 cauchy :: Cauchy distributed random numbers; #N canvas 293 158 494 344 META 0; #X text 12 150 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 130 AUTHOR Olaf Matthes <[email protected]>; #X text 12 90 INLET_1 float; #X text 12 110 OUTLET_0 float; #X text 12 45 DESCRIPTION Cauchy distributed random numbers; #X text 12 5 KEYWORDS control random; #X text 12 70 INLET_0 bang; #X restore 425 278 pd META; #X connect 0 0 3 0; #X connect 2 0 3 1; #X connect 3 0 1 0;
#N canvas 0 31 487 308 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 185 103 5 0 0 0 - - -; #X obj 70 140 cauchy 0.5; #X text 238 104 alpha - governs spread; #X text 39 21 cauchy :: Cauchy distributed random numbers; #X connect 0 0 3 0; #X connect 2 0 3 1; #X connect 3 0 1 0;
20
control random
Cauchy distributed random numbers
create a purr-data patch that matches the following description and keywords.
Description: Cauchy distributed random numbers, Keywords: control random
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
unsetenv-help.pd
externals\hcs\unsetenv-help.pd
#N canvas 0 26 512 273 10; #X obj 221 152 setenv; #X msg 221 54 bang; #X symbolatom 221 199 0 0 0 0 - - -; #X msg 19 51 bang; #X msg 254 120 symbol SHELL; #X msg 341 120 symbol PATH; #X msg 421 120 symbol HOME; #X obj 19 134 unsetenv HOME; #X msg 94 107 symbol SHELL; #X text 67 51 bang unsets; #N canvas 280 175 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 v3; #X text 12 105 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control filesystem; #X text 12 45 DESCRIPTION unset env; #X text 12 65 INLET_0 bang; #X text 12 85 INLET_1 symbol; #X restore 463 253 pd META; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 3 0 7 0; #X connect 4 0 0 1; #X connect 5 0 0 1; #X connect 6 0 0 1; #X connect 8 0 7 1;
#N canvas 0 26 512 273 10; #X obj 221 152 setenv; #X msg 221 54 bang; #X symbolatom 221 199 0 0 0 0 - - -; #X msg 19 51 bang; #X msg 254 120 symbol SHELL; #X msg 341 120 symbol PATH; #X msg 421 120 symbol HOME; #X obj 19 134 unsetenv HOME; #X msg 94 107 symbol SHELL; #X text 67 51 bang unsets; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 3 0 7 0; #X connect 4 0 0 1; #X connect 5 0 0 1; #X connect 6 0 0 1; #X connect 8 0 7 1;
27
control filesystem
unset env
create a purr-data patch that matches the following description and keywords.
Description: unset env, Keywords: control filesystem
to_ascii_code-help.pd
externals\tof\tof\to_ascii_code-help.pd
#N canvas 1 53 571 202 10; #X msg 49 60 test; #X msg 182 61 1234; #X obj 49 112 tof/to_ascii_code 13; #X msg 92 60 list abcdef; #X obj 49 153 print codes; #X text 54 19 Tags: conversion text symbols; #X text 55 3 Description: Convert PD messages into ASCII codes; #X text 188 111 Optionnal argument: append ASCII code (in this case 13 \, a carriage return); #N canvas 290 133 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 45 LICENSE GPL v2; #X text 12 105 AUTHOR Thomas Ouellet Fredericks; #X text 12 25 DESCRIPTION convert PD messages into ASCII codes; #X text 12 5 KEYWORDS control conversion; #X text 12 65 INLET_0 anything; #X text 12 85 OUTLET_0 list; #X restore 511 161 pd META; #X connect 0 0 2 0; #X connect 1 0 2 0; #X connect 2 0 4 0; #X connect 3 0 2 0;
#N canvas 1 53 571 202 10; #X msg 49 60 test; #X msg 182 61 1234; #X obj 49 112 tof/to_ascii_code 13; #X msg 92 60 list abcdef; #X obj 49 153 print codes; #X text 54 19 Tags: conversion text symbols; #X text 55 3 Description: Convert PD messages into ASCII codes; #X text 188 111 Optionnal argument: append ASCII code (in this case 13 \, a carriage return); #X connect 0 0 2 0; #X connect 1 0 2 0; #X connect 2 0 4 0; #X connect 3 0 2 0;
22
control conversion
convert PD messages into ASCII codes
create a purr-data patch that matches the following description and keywords.
Description: convert PD messages into ASCII codes, Keywords: control conversion
linear_pan~-help.pd
externals\pan\linear_pan~-help.pd
#N canvas 0 31 477 320 10; #X obj 5 2 cnv 15 450 20 empty empty linearpan~ 2 11 1 18 -233017 -66577 0; #X msg 422 3 pddp; #X text 17 270 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 234 284 released under the GNU GPL; #X obj 134 225 dac~; #X obj 181 145 hsl 128 20 0 1 0 1 empty empty pan_position 6 10 1 11 -262131 -1 -1 6350 0; #X text 16 37 Pan a mono signal using linear panning. The left inlet takes the audio signal and the right inlet takes the control signal with 0 = left \, 1 = right \, and 0.5 = center.; #X obj 84 131 osc~ 250; #X obj 84 152 *~ 0.5; #X obj 362 186 tgl 25 0 empty empty DSP 3 12 1 9 -24198 -1 -1 0 1; #X msg 362 218 \; pd dsp \$1; #X obj 113 187 linearpan~; #N canvas 459 31 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; #X text 12 145 AUTHOR Hans-Christoph Steiner; #X text 12 65 INLET_0 signal; #X text 12 105 OUTLET_0 signal; #X text 12 125 OUTLET_1 signal; #X text 12 45 DESCRIPTION pan a mono signal using linear panning; #X text 12 5 KEYWORDS signal abstraction; #X text 12 85 INLET_1 float; #X restore 423 289 pd META; #X connect 5 0 11 1; #X connect 7 0 8 0; #X connect 8 0 11 0; #X connect 9 0 10 0; #X connect 11 0 4 0; #X connect 11 1 4 1;
#N canvas 0 31 477 320 10; #X msg 422 3 pddp; #X text 17 270 (C) Copyright 2004 Hans-Christoph Steiner <[email protected]> ; #X text 234 284 released under the GNU GPL; #X obj 134 225 dac~; #X obj 181 145 hsl 128 20 0 1 0 1 empty empty pan_position 6 10 1 11 -262131 -1 -1 6350 0; #X text 16 37 Pan a mono signal using linear panning. The left inlet takes the audio signal and the right inlet takes the control signal with 0 = left \, 1 = right \, and 0.5 = center.; #X obj 84 131 osc~ 250; #X obj 84 152 *~ 0.5; #X obj 362 186 tgl 25 0 empty empty DSP 3 12 1 9 -24198 -1 -1 0 1; #X msg 362 218 \; pd dsp \$1; #X obj 113 187 linearpan~; #X connect 5 0 11 1; #X connect 7 0 8 0; #X connect 8 0 11 0; #X connect 9 0 10 0; #X connect 11 0 4 0; #X connect 11 1 4 1;
30
signal abstraction
pan a mono signal using linear panning
create a purr-data patch that matches the following description and keywords.
Description: pan a mono signal using linear panning, Keywords: signal abstraction
statwav~-help.pd
externals\creb\doc\statwav~-help.pd
#N canvas 0 0 450 300 10; #X obj 52 29 statwav~; #X text 124 29 static wavetable oscillator; #N canvas 127 170 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 105 LIBRARY external creb; #X text 12 85 OUTLET_0 signal; #X text 12 45 DESCRIPTION static wavetable oscillator; #X text 12 65 INLET_0 signal; #X text 12 25 LICENSE GPL v2; #X text 12 5 KEYWORDS signal array needs_work (example patch); #X text 12 125 AUTHOR Tom Schouten <[email protected]>; #X restore 398 276 pd META; #X text 135 120 needs an example;
#N canvas 0 0 450 300 10; #X obj 52 29 statwav~; #X text 124 29 static wavetable oscillator; #X text 135 120 needs an example;
14
signal array needs_work (example patch)
static wavetable oscillator
create a purr-data patch that matches the following description and keywords.
Description: static wavetable oscillator, Keywords: signal array needs_work (example patch)
radians2mapping-help.pd
externals\mapping\radians2mapping-help.pd
#N canvas 1 53 533 333 10; #X obj 5 2 cnv 15 450 20 empty empty radians2mapping 2 11 1 18 -233017 -66577 0; #X msg 422 3 pddp; #X text 254 269 released under the GNU GPL; #X text 144 228 For more info:; #X text 40 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 254 186 related objects:; #X floatatom 69 195 5 0 0 1 mapping - -; #X obj 72 95 hsl 128 15 -3.14159 3.14159 0 0 empty empty radians 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 125 9 0 0 0 - - -; #X obj 69 160 radians2mapping; #X text 21 35 This object converts numbers from radians (-pi to pi) to the mapping range (0 to 1) with the 0's lining up in the same place. ; #X obj 252 202 radians2mapping; #X obj 140 202 degrees2mapping; #X obj 365 202 mapping2degrees; #X obj 248 226 pddp/pddplink ../mapping-about.pd -text mapping-about ; #N canvas 436 140 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 85 INLET_0 float; #X text 12 45 DESCRIPTION convert numbers from radians (-pi to pi) to the mapping range (0 to 1) with the 0's lining up in the same place ; #X text 12 5 KEYWORDS control abstraction conversion; #X restore 474 302 pd META; #X connect 7 0 8 0; #X connect 7 0 9 0; #X connect 9 0 6 0;
#N canvas 1 53 533 333 10; #X msg 422 3 pddp; #X text 254 269 released under the GNU GPL; #X text 144 228 For more info:; #X text 40 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 254 186 related objects:; #X floatatom 69 195 5 0 0 1 mapping - -; #X obj 72 95 hsl 128 15 -3.14159 3.14159 0 0 empty empty radians 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 125 9 0 0 0 - - -; #X obj 69 160 radians2mapping; #X text 21 35 This object converts numbers from radians (-pi to pi) to the mapping range (0 to 1) with the 0's lining up in the same place. ; #X obj 252 202 radians2mapping; #X obj 140 202 degrees2mapping; #X obj 365 202 mapping2degrees; #X connect 7 0 8 0; #X connect 7 0 9 0; #X connect 9 0 6 0;
28
control abstraction conversion
convert numbers from radians (-pi to pi) to the mapping range (0 to 1) with the 0's lining up in the same place
create a purr-data patch that matches the following description and keywords.
Description: convert numbers from radians (-pi to pi) to the mapping range (0 to 1) with the 0's lining up in the same place, Keywords: control abstraction conversion
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
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)
minmax-help.pd
externals\zexy\reference\minmax-help.pd
#N canvas 0 31 477 241 10; #X obj 73 61 minmax; #X text 127 60 get minimum and maximum of a (list of floats); #X obj 45 152 minmax; #X floatatom 45 184 4 0 0 0 - - -; #X floatatom 78 184 4 0 0 0 - - -; #X msg 45 112 10 2; #X msg 80 129 1 2 3 4 9 6 -1 7; #X text 352 14 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 get minimum and maximum of a list of floats ; #X text 12 65 INLET_0 list; #X text 12 85 OUTLET_0 float; #X text 12 105 OUTLET_1 float; #X restore 420 212 pd META; #X connect 2 0 3 0; #X connect 2 1 4 0; #X connect 5 0 2 0; #X connect 6 0 2 0;
#N canvas 0 31 477 241 10; #X obj 73 61 minmax; #X text 127 60 get minimum and maximum of a (list of floats); #X obj 45 152 minmax; #X floatatom 45 184 4 0 0 0 - - -; #X floatatom 78 184 4 0 0 0 - - -; #X msg 45 112 10 2; #X msg 80 129 1 2 3 4 9 6 -1 7; #X text 352 14 part of zexy; #X connect 2 0 3 0; #X connect 2 1 4 0; #X connect 5 0 2 0; #X connect 6 0 2 0;
23
control
get minimum and maximum of a list of floats
create a purr-data patch that matches the following description and keywords.
Description: get minimum and maximum of a list of floats, Keywords: control
1.2.create_patch.pd
packages\win64_inno\build\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
all_about.pd
packages\win64_inno\build\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
randomF-help.pd
externals\markex\randomF-help.pd
#N canvas 1 53 604 504 10; #X text 124 68 GEM object; #X msg 123 155 bang; #X text 138 23 randomF; #X obj 123 223 randomF 0.5; #X text 60 385 randomF is a floating point random number generator ; #X floatatom 195 161 5 0 0 1 range - -; #X floatatom 123 289 5 0 0 0 - - -; #N canvas 497 111 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 125 AUTHOR Mark Danks; #X text 12 25 LICENSE GPL v2; #X text 12 45 DESCRIPTION floating point random number generator; #X text 12 5 KEYWORDS control random; #X text 12 65 INLET_0 bang; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 float; #X restore 545 476 pd META; #X connect 1 0 3 0; #X connect 3 0 6 0; #X connect 5 0 3 1;
#N canvas 1 53 604 504 10; #X text 124 68 GEM object; #X msg 123 155 bang; #X text 138 23 randomF; #X obj 123 223 randomF 0.5; #X text 60 385 randomF is a floating point random number generator ; #X floatatom 195 161 5 0 0 1 range - -; #X floatatom 123 289 5 0 0 0 - - -; #X connect 1 0 3 0; #X connect 3 0 6 0; #X connect 5 0 3 1;
21
control random
floating point random number generator
create a purr-data patch that matches the following description and keywords.
Description: floating point random number generator, Keywords: control random
median_7-help.pd
externals\mapping\median_7-help.pd
#N canvas 1 53 580 500 12; #X floatatom 95 202 5 0 0 0 - - -; #X floatatom 95 264 5 0 0 0 - - -; #X obj 95 234 median_7; #X text 131 39 output median value of the last 7 samples; #N canvas 494 333 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; #X text 12 45 DESCRIPTION output median value of the last 7 samples ; #X restore 510 470 pd META; #X connect 0 0 2 0; #X connect 2 0 1 0;
#N canvas 1 53 580 500 12; #X floatatom 95 202 5 0 0 0 - - -; #X floatatom 95 264 5 0 0 0 - - -; #X obj 95 234 median_7; #X text 131 39 output median value of the last 7 samples; #X connect 0 0 2 0; #X connect 2 0 1 0;
16
control abstraction
output median value of the last 7 samples
create a purr-data patch that matches the following description and keywords.
Description: output median value of the last 7 samples, Keywords: control abstraction
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)
multiplex~-help.pd
externals\zexy\reference\multiplex~-help.pd
#N canvas 0 31 610 291 10; #X obj 75 23 multiplex~; #X obj 72 193 multiplex~ . . . . .; #X text 210 23 multiplex 1-of-n signals to 1 outlet; #X obj 72 139 sig~ 1; #X obj 110 161 sig~ 0.5; #X obj 149 137 sig~ 50; #X obj 227 158 sig~ 0.1; #X floatatom 110 93 4 0 0 0 - - -; #X obj 72 229 env~; #X floatatom 72 255 4 0 0 0 - - -; #X text 156 93 select a signal; #X obj 306 262 mux~; #X text 254 261 alias; #X text 135 214 the number of arguments specifies the number of inlets ; #X text 510 3 part of zexy; #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 signal; #X text 12 45 DESCRIPTION multiplex 1-of-n signals to 1 outlet; #X text 12 65 INLET_0 float signal; #X text 12 105 OUTLET_0 signal; #X text 12 85 INLET_1 signal; #X restore 548 263 pd META; #X connect 1 0 8 0; #X connect 3 0 1 0; #X connect 4 0 1 1; #X connect 5 0 1 2; #X connect 6 0 1 4; #X connect 7 0 1 0; #X connect 8 0 9 0;
#N canvas 0 31 610 291 10; #X obj 75 23 multiplex~; #X obj 72 193 multiplex~ . . . . .; #X text 210 23 multiplex 1-of-n signals to 1 outlet; #X obj 72 139 sig~ 1; #X obj 110 161 sig~ 0.5; #X obj 149 137 sig~ 50; #X obj 227 158 sig~ 0.1; #X floatatom 110 93 4 0 0 0 - - -; #X obj 72 229 env~; #X floatatom 72 255 4 0 0 0 - - -; #X text 156 93 select a signal; #X obj 306 262 mux~; #X text 254 261 alias; #X text 135 214 the number of arguments specifies the number of inlets ; #X text 510 3 part of zexy; #X connect 1 0 8 0; #X connect 3 0 1 0; #X connect 4 0 1 1; #X connect 5 0 1 2; #X connect 6 0 1 4; #X connect 7 0 1 0; #X connect 8 0 9 0;
33
signal
multiplex 1-of-n signals to 1 outlet
create a purr-data patch that matches the following description and keywords.
Description: multiplex 1-of-n signals to 1 outlet, Keywords: signal
wrap-help.pd
externals\maxlib\wrap-help.pd
#N canvas 0 26 472 397 12; #X floatatom 27 304 8 0 0 0 - - -; #X floatatom 27 73 5 0 0 0 - - -; #X text 187 26 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 94 277 5 0 0 0 - - -; #X text 36 358 wrap <lower limit> <upper limit>; #X text 106 305 floats 'in range'; #X text 122 11 wrap :: wrap floats into a range; #X text 153 276 wrap periods; #N canvas 341 152 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 125 OUTLET_0 float; #X text 12 85 INLET_1 float; #X text 12 105 INLET_2 float; #X text 12 45 DESCRIPTION wrap floats into a range; #X text 12 65 INLET_0 float; #X text 12 145 OUTLET_1 float; #X text 12 5 KEYWORDS control filter; #X restore 410 364 pd META; #X obj 27 249 maxlib/wrap 6 40; #X connect 1 0 16 0; #X connect 3 0 16 1; #X connect 4 0 16 2; #X connect 16 0 0 0; #X connect 16 1 10 0;
#N canvas 0 26 472 397 12; #X floatatom 27 304 8 0 0 0 - - -; #X floatatom 27 73 5 0 0 0 - - -; #X text 187 26 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 94 277 5 0 0 0 - - -; #X text 36 358 wrap <lower limit> <upper limit>; #X text 106 305 floats 'in range'; #X text 122 11 wrap :: wrap floats into a range; #X text 153 276 wrap periods; #X obj 27 249 maxlib/wrap 6 40; #X connect 1 0 16 0; #X connect 3 0 16 1; #X connect 4 0 16 2; #X connect 16 0 0 0; #X connect 16 1 10 0;
34
control filter
wrap floats into a range
create a purr-data patch that matches the following description and keywords.
Description: wrap floats into a range, Keywords: control filter
prime-help.pd
externals\zexy\reference\prime-help.pd
#N canvas 0 31 428 257 10; #X obj 34 32 prime; #X text 82 34 a prime number detector; #X floatatom 51 116 8 0 0 0 - - -; #X obj 51 147 prime; #X msg 51 75 1; #X msg 81 75 2; #X msg 111 75 3; #X msg 142 74 4; #X floatatom 51 187 5 0 0 0 - - -; #X msg 175 74 11117; #X msg 227 74 1.23457e+06; #X text 114 193 1 if input is prime \, 0 otherwise; #X text 303 9 part of zexy; #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 a prime number detector; #X text 12 5 KEYWORDS control; #X text 12 65 INLET_0 float; #X text 12 85 OUTLET_0 float; #X restore 371 226 pd META; #X connect 2 0 3 0; #X connect 3 0 8 0; #X connect 4 0 2 0; #X connect 5 0 2 0; #X connect 6 0 2 0; #X connect 7 0 2 0; #X connect 9 0 2 0; #X connect 10 0 2 0;
#N canvas 0 31 428 257 10; #X obj 34 32 prime; #X text 82 34 a prime number detector; #X floatatom 51 116 8 0 0 0 - - -; #X obj 51 147 prime; #X msg 51 75 1; #X msg 81 75 2; #X msg 111 75 3; #X msg 142 74 4; #X floatatom 51 187 5 0 0 0 - - -; #X msg 175 74 11117; #X msg 227 74 1.23457e+06; #X text 114 193 1 if input is prime \, 0 otherwise; #X text 303 9 part of zexy; #X connect 2 0 3 0; #X connect 3 0 8 0; #X connect 4 0 2 0; #X connect 5 0 2 0; #X connect 6 0 2 0; #X connect 7 0 2 0; #X connect 9 0 2 0; #X connect 10 0 2 0;
31
control
a prime number detector
create a purr-data patch that matches the following description and keywords.
Description: a prime number detector, Keywords: control
edge~-help.pd
externals\miXed\doc\help\cyclone\edge~-help.pd
#N canvas 0 26 594 299 10; #X text 15 35 Detect zero to non-zero signal transitions; #X text 176 256 zero to non- zero transition; #X floatatom 156 85 0 0 0 0 - - -; #X obj 185 235 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 156 259 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 156 113 sig~; #X text 199 80 change signal value above and below 1; #X text 209 233 non-zero to zero transition; #X obj 299 142 expr~; #X obj 156 149 expr~ $v1>1; #X obj 156 200 edge~; #X obj 209 182 Snapshot~ 100; #X obj 210 205 nbx 5 14 -1e+37 1e+37 0 0 empty empty empty 0 -8 0 10 -262144 -1 -1 0 256; #N canvas 77 68 494 395 META 0; #X text 12 65 PLATFORM windows macosx gnulinux; #X text 12 195 HELP_PATCH_AUTHORS Christoph Kummerer. Revised by Jonathan Wilkes for Pd-extended 0.42 to conform to the PDDP template.; #X text 12 165 WEBSITE http://suita.chopin.edu.pl/~czaja/miXed/externs/cyclone.html ; #X text 12 5 KEYWORDS signal conversion max_compatible; #X text 12 45 DESCRIPTION detect zero to non-zero signal transitions ; #X text 12 85 INLET_0 signal; #X text 12 105 OUTLET_0 bang; #X text 12 125 OUTLET_1 bang; #X text 12 25 LICENSE SIBSD; #X text 12 145 AUTHOR Krzysztof Czaja; #X restore 544 277 pd META; #X connect 2 0 5 0; #X connect 5 0 9 0; #X connect 9 0 10 0; #X connect 9 0 11 0; #X connect 10 0 4 0; #X connect 10 1 3 0; #X connect 11 0 12 0;
#N canvas 0 26 594 299 10; #X text 15 35 Detect zero to non-zero signal transitions; #X text 176 256 zero to non- zero transition; #X floatatom 156 85 0 0 0 0 - - -; #X obj 185 235 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 156 259 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 156 113 sig~; #X text 199 80 change signal value above and below 1; #X text 209 233 non-zero to zero transition; #X obj 299 142 expr~; #X obj 156 149 expr~ $v1>1; #X obj 156 200 edge~; #X obj 209 182 Snapshot~ 100; #X obj 210 205 nbx 5 14 -1e+37 1e+37 0 0 empty empty empty 0 -8 0 10 -262144 -1 -1 0 256; #X connect 2 0 5 0; #X connect 5 0 9 0; #X connect 9 0 10 0; #X connect 9 0 11 0; #X connect 10 0 4 0; #X connect 10 1 3 0; #X connect 11 0 12 0;
33
signal conversion max_compatible
detect zero to non-zero signal transitions
create a purr-data patch that matches the following description and keywords.
Description: detect zero to non-zero signal transitions, Keywords: signal conversion max_compatible
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
rad2hid-help.pd
externals\hid\rad2hid-help.pd
#N canvas 0 31 467 307 10; #X obj 5 2 cnv 15 450 20 empty empty rad2hid 2 11 1 18 -233017 -66577 0; #X obj 422 3 pddp/pddplink http://puredata.info/dev/pddp -text pddp ; #X text 234 269 released under the GNU GPL; #X text 165 228 For more info:; #X text 20 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 300 168 related objects:; #X obj 233 184 hid/rad2hid; #X obj 312 184 hid/deg2hid; #X obj 391 184 hid/hid2deg; #X floatatom 69 195 5 0 0 1 hid - -; #X obj 72 95 hsl 128 15 -3.14159 3.14159 0 0 empty empty radians 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 125 9 0 0 0 - - -; #X obj 69 160 hid/rad2hid; #X text 21 35 This object converts numbers from radians (-pi to pi) to the [hid] range (0 to 1) with the 0's lining up in the same place. ; #N canvas 477 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 45 DESCRIPTION convert numbers from radians (-pi to pi) to the [hid] range (0 to 1) with 0's lining up in the same place; #X text 12 75 INLET_0 float; #X text 12 95 OUTLET_0 float; #X text 12 5 KEYWORDS control user_input abstraction; #X restore 416 275 pd META; #X connect 10 0 12 0; #X connect 10 0 11 0; #X connect 12 0 9 0;
#N canvas 0 31 467 307 10; #X text 234 269 released under the GNU GPL; #X text 165 228 For more info:; #X text 20 254 (C) Copyright 2005 Hans-Christoph Steiner <[email protected]> ; #X text 300 168 related objects:; #X obj 233 184 hid/rad2hid; #X obj 312 184 hid/deg2hid; #X obj 391 184 hid/hid2deg; #X floatatom 69 195 5 0 0 1 hid - -; #X obj 72 95 hsl 128 15 -3.14159 3.14159 0 0 empty empty radians 6 7 1 10 -262131 -1 -1 0 0; #X floatatom 95 125 9 0 0 0 - - -; #X obj 69 160 hid/rad2hid; #X text 21 35 This object converts numbers from radians (-pi to pi) to the [hid] range (0 to 1) with the 0's lining up in the same place. ; #X connect 10 0 12 0; #X connect 10 0 11 0; #X connect 12 0 9 0;
27
control user_input abstraction
convert numbers from radians (-pi to pi) to the [hid] range (0 to 1) 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 radians (-pi to pi) to the [hid] range (0 to 1) with 0's lining up in the same place, Keywords: control user_input abstraction
fmop~-help.pd
externals\creb\doc\fmop~-help.pd
#N canvas 0 26 344 223 10; #X text 76 12 fm operator; #N canvas 21 119 494 354 META 0; #X text 12 165 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 45 DESCRIPTION frequency modulation operator; #X text 12 105 INLET_2 signal; #X text 12 125 OUTLET_0 signal; #X text 12 5 KEYWORDS signal abstraction needs_work (example patch) ; #X text 12 25 LICENSE GPL v2; #X text 12 145 AUTHOR Tom Schouten <[email protected]>; #X restore 288 197 pd META; #X obj 79 101 fmop~;
#N canvas 0 26 344 223 10; #X text 76 12 fm operator; #X obj 79 101 fmop~;
14
signal abstraction needs_work (example patch)
frequency modulation operator
create a purr-data patch that matches the following description and keywords.
Description: frequency modulation operator, Keywords: signal abstraction needs_work (example patch)
2.open_close.pd
pd\doc\manuals\pd-msg\2.msg_and_pd\2.open_close.pd
#N canvas 250 104 525 543 10; #X text 10 4 open and close an abstraction; #X msg 25 205 \; pd-abstraction.pd menuclose \;; #X text 25 141 Sometimes you can get relative paths (./ \, ../ \, etc.) to work \, but usually not. I don't know why...; #X msg 176 434 \; pd open \$1 \$2; #X obj 221 369 getdir; #X msg 25 63 \; pd open abstraction.pd /usr/local/lib/pd/doc/7.stuff/additional/pd-msg/2.msg_and_pd ; #X text 25 41 OPEN; #X text 24 184 CLOSE; #X obj 51 418 makefilename pd-%s; #X msg 51 441 \; \$1 menuclose \;; #X obj 51 396 symbol; #X msg 51 310 abstraction.pd; #X obj 51 335 trigger bang anything bang; #X obj 127 369 symbol; #X obj 51 369 del 2000; #X obj 176 411 pack s s; #X obj 176 369 symbol; #X text 27 288 OPEN \, THEN CLOSE AFTER 2 SECONDS; #X text 25 109 You have to put the name of the patch to open and its complete path; #X text 22 251 (you have to put the correct name & a valid path); #X text 47 481 you have to put the name of the patch to open (\$1) and the complete path to it (\$2); #N canvas 438 216 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 opening and closing a patch by sending messages to Pd; #X text 12 45 LICENSE public domain; #X text 12 25 KEYWORDS control pd_op nonlocal tutorial; #X restore 445 516 pd META; #X connect 4 0 15 1; #X connect 8 0 9 0; #X connect 10 0 8 0; #X connect 11 0 12 0; #X connect 12 0 14 0; #X connect 12 1 13 0; #X connect 12 1 16 0; #X connect 12 2 4 0; #X connect 13 0 10 1; #X connect 14 0 10 0; #X connect 15 0 3 0; #X connect 16 0 15 0;
#N canvas 250 104 525 543 10; #X text 10 4 open and close an abstraction; #X msg 25 205 \; pd-abstraction.pd menuclose \;; #X text 25 141 Sometimes you can get relative paths (./ \, ../ \, etc.) to work \, but usually not. I don't know why...; #X msg 176 434 \; pd open \$1 \$2; #X obj 221 369 getdir; #X msg 25 63 \; pd open abstraction.pd /usr/local/lib/pd/doc/7.stuff/additional/pd-msg/2.msg_and_pd ; #X text 25 41 OPEN; #X text 24 184 CLOSE; #X obj 51 418 makefilename pd-%s; #X msg 51 441 \; \$1 menuclose \;; #X obj 51 396 symbol; #X msg 51 310 abstraction.pd; #X obj 51 335 trigger bang anything bang; #X obj 127 369 symbol; #X obj 51 369 del 2000; #X obj 176 411 pack s s; #X obj 176 369 symbol; #X text 27 288 OPEN \, THEN CLOSE AFTER 2 SECONDS; #X text 25 109 You have to put the name of the patch to open and its complete path; #X text 22 251 (you have to put the correct name & a valid path); #X text 47 481 you have to put the name of the patch to open (\$1) and the complete path to it (\$2); #X connect 4 0 15 1; #X connect 8 0 9 0; #X connect 10 0 8 0; #X connect 11 0 12 0; #X connect 12 0 14 0; #X connect 12 1 13 0; #X connect 12 1 16 0; #X connect 12 2 4 0; #X connect 13 0 10 1; #X connect 14 0 10 0; #X connect 15 0 3 0; #X connect 16 0 15 0;
40
control pd_op nonlocal tutorial
opening and closing a patch by sending messages to Pd
create a purr-data patch that matches the following description and keywords.
Description: opening and closing a patch by sending messages to Pd, Keywords: control pd_op nonlocal 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)
vfmod-help.pd
externals\smlib\vfmod-help.pd
#N canvas 1 53 442 175 10; #X text 354 107 j#|@2002; #X obj 376 87 SMLib-help; #X text 10 6 vfmod computes the modulo of each element in a vector ; #X obj 15 127 print; #X floatatom 66 81 5 0 0 0 - - -; #X text 79 103 base; #X text 78 119 base zero becomes one; #X msg 15 33 0 0.5 1 1.5 2 2.5 3 3.5; #X msg 26 58 0 -0.5 -1 -1.5 -2 -2.5 -3 -3.5; #X obj 15 101 vfmod 2; #X text 78 134 default argument is 1; #N canvas 178 183 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 Johannes Taelman ([email protected]) ; #X text 12 5 KEYWORDS control list_op; #X text 12 65 INLET_0 list float; #X text 12 105 OUTLET_0 list float; #X text 12 45 DESCRIPTION compute the modulo of each element in a vector ; #X text 12 85 INLET_1 float; #X restore 386 128 pd META; #X connect 4 0 9 1; #X connect 7 0 9 0; #X connect 8 0 9 0; #X connect 9 0 3 0;
#N canvas 1 53 442 175 10; #X text 354 107 j#|@2002; #X obj 376 87 SMLib-help; #X text 10 6 vfmod computes the modulo of each element in a vector ; #X obj 15 127 print; #X floatatom 66 81 5 0 0 0 - - -; #X text 79 103 base; #X text 78 119 base zero becomes one; #X msg 15 33 0 0.5 1 1.5 2 2.5 3 3.5; #X msg 26 58 0 -0.5 -1 -1.5 -2 -2.5 -3 -3.5; #X obj 15 101 vfmod 2; #X text 78 134 default argument is 1; #X connect 4 0 9 1; #X connect 7 0 9 0; #X connect 8 0 9 0; #X connect 9 0 3 0;
26
control list_op
compute the modulo of each element in a vector
create a purr-data patch that matches the following description and keywords.
Description: compute the modulo of each element in a vector, Keywords: control list_op
vector+-help.pd
externals\markex\vector+-help.pd
#N canvas 715 331 450 300 10; #N canvas 753 488 494 344 META 0; #X text 12 135 AUTHOR Mark Danks; #X text 12 25 LICENSE GPL v2; #X text 12 5 KEYWORDS control vector; #X text 12 165 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42. \, helppatch by IOhannes m zmölnig; #X text 13 76 INLET_0 list; #X text 13 116 OUTLET_0 list; #X text 12 45 DESCRIPTION adds a constant offset to a vector; #X text 13 96 INLET_1 float; #X restore 393 265 pd META; #X msg 64 86 1 2 3; #X msg 175 86 10; #X text 27 25 MarkEx vector operation: add a constant offset to a vector ; #X text 52 248 a "vector" is simply a list of numbers.; #X obj 64 147 print vector+; #X obj 64 116 vector+ 42; #X connect 1 0 6 0; #X connect 2 0 6 1; #X connect 6 0 5 0;
#N canvas 715 331 450 300 10; #X msg 64 86 1 2 3; #X msg 175 86 10; #X text 27 25 MarkEx vector operation: add a constant offset to a vector ; #X text 52 248 a "vector" is simply a list of numbers.; #X obj 64 147 print vector+; #X obj 64 116 vector+ 42; #X connect 1 0 6 0; #X connect 2 0 6 1; #X connect 6 0 5 0;
20
control vector
adds a constant offset to a vector
create a purr-data patch that matches the following description and keywords.
Description: adds a constant offset to a vector, Keywords: control vector
17.coords.pd
packages\win64_inno\build\doc\4.data.structures\pd-l2ork\ds-tutorials\17.coords.pd
#N struct drawtut-coords float x float y; #N canvas 1 25 537 571 10; #N canvas 290 275 450 300 META 0; #X text 16 6 KEYWORDS tutorial data_structure draw; #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 46 DESCRIPTION animating scalars with the [draw] command ; #X restore 450 538 pd META; #X text 0 1 New Drawing Commands: coordinate data; #X text 1 1 _____________________________________; #X obj 51 30 struct drawtut-coords float x float y; #X obj 135 321 draw polyline; #X scalar drawtut-coords 85 159 \;; #X obj 135 113 tgl 15 0 empty empty Auto 17 7 0 10 -262144 -1 -1 0 1; #X obj 135 133 metro 400; #X obj 135 155 tgl 15 0 empty empty Click_me 17 7 0 10 -262144 -1 -1 0 1; #X obj 135 182 * 30; #X obj 135 204 + 30; #X msg 135 231 points 0 0 30 0 30 \$1 0 \$1; #X obj 158 256 loadbang; #X msg 158 278 stroke black \, stroke-width 1 \, fill none \, points 0 0 30 0 30 30 0 30; #X obj 46 431 draw path m -60 20 20 0 0 20 -20 0 z m 30 0 10 0 0 10 -10 0 z; #X msg 46 406 d m -60 20 20 0 0 20 -20 0 z m \$1 0 10 0 0 10 -10 0 z; #X text 184 189 Polygons and polylines take the "points" message to set their coordinate data.; #X text 94 371 For paths \, use the "d" message to send new path data. ; #X text 49 64 You can dynamically set the coordinate data for polygons \, polylines \, and paths.; #X connect 6 0 7 0; #X connect 7 0 8 0; #X connect 8 0 9 0; #X connect 9 0 10 0; #X connect 10 0 11 0; #X connect 10 0 15 0; #X connect 11 0 4 0; #X connect 12 0 13 0; #X connect 13 0 4 0; #X connect 15 0 14 0;
#N struct drawtut-coords float x float y; #N canvas 1 25 537 571 10; #X text 0 1 New Drawing Commands: coordinate data; #X text 1 1 _____________________________________; #X obj 51 30 struct drawtut-coords float x float y; #X obj 135 321 draw polyline; #X scalar drawtut-coords 85 159 \;; #X obj 135 113 tgl 15 0 empty empty Auto 17 7 0 10 -262144 -1 -1 0 1; #X obj 135 133 metro 400; #X obj 135 155 tgl 15 0 empty empty Click_me 17 7 0 10 -262144 -1 -1 0 1; #X obj 135 182 * 30; #X obj 135 204 + 30; #X msg 135 231 points 0 0 30 0 30 \$1 0 \$1; #X obj 158 256 loadbang; #X msg 158 278 stroke black \, stroke-width 1 \, fill none \, points 0 0 30 0 30 30 0 30; #X obj 46 431 draw path m -60 20 20 0 0 20 -20 0 z m 30 0 10 0 0 10 -10 0 z; #X msg 46 406 d m -60 20 20 0 0 20 -20 0 z m \$1 0 10 0 0 10 -10 0 z; #X text 184 189 Polygons and polylines take the "points" message to set their coordinate data.; #X text 94 371 For paths \, use the "d" message to send new path data. ; #X text 49 64 You can dynamically set the coordinate data for polygons \, polylines \, and paths.; #X connect 6 0 7 0; #X connect 7 0 8 0; #X connect 8 0 9 0; #X connect 9 0 10 0; #X connect 10 0 11 0; #X connect 10 0 15 0; #X connect 11 0 4 0; #X connect 12 0 13 0; #X connect 13 0 4 0; #X connect 15 0 14 0;
37
tutorial data_structure draw
animating scalars with the [draw] command
create a purr-data patch that matches the following description and keywords.
Description: animating scalars with the [draw] command, Keywords: tutorial data_structure draw
lattice3-help.pd
externals\creb\doc\lattice3-help.pd
#N canvas 0 26 450 300 10; #X text 22 4 expand harmonic lattice vector in the (2 \, 3/2 \, 5/4) basis; #N canvas 331 92 494 345 META 0; #X text 12 125 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 85 OUTLET_0 signal; #X text 12 65 INLET_0 signal; #X text 12 45 DESCRIPTION expand a 3D harmonic lattice vector; #X text 12 5 KEYWORDS control abstraction needs_work (example patch) ; #X text 12 25 LICENSE GPL v2; #X text 12 105 AUTHOR Tom Schouten <[email protected]>; #X restore 391 275 pd META; #X obj 74 93 lattice3;
#N canvas 0 26 450 300 10; #X text 22 4 expand harmonic lattice vector in the (2 \, 3/2 \, 5/4) basis; #X obj 74 93 lattice3;
12
control abstraction needs_work (example patch)
expand a 3D harmonic lattice vector
create a purr-data patch that matches the following description and keywords.
Description: expand a 3D harmonic lattice vector, Keywords: control abstraction needs_work (example patch)
vcog-help.pd
externals\smlib\vcog-help.pd
#N canvas 1 53 471 165 10; #X msg 18 40 1 2 3 4; #X floatatom 50 96 5 0 0 0 - - -; #X msg 84 40 3 4 5; #X text 387 99 j#|@2002; #X obj 409 77 SMLib-help; #X obj 52 69 vcog; #X text 16 14 vcog computes the center of gravity of a list of floats ; #X msg 134 40 0 1 0 1; #X msg 199 40 0 0 1 1; #X msg 263 40 8; #X msg 144 74 1 -1; #X text 142 94 zero sum causes no output; #N canvas 208 165 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 Johannes Taelman ([email protected]) ; #X text 12 5 KEYWORDS control list_op; #X text 12 75 INLET_0 list float; #X text 12 45 DESCRIPTION compute the center of gravity of a list of floats; #X text 12 95 OUTLET_0 float; #X restore 417 124 pd META; #X connect 0 0 5 0; #X connect 2 0 5 0; #X connect 5 0 1 0; #X connect 7 0 5 0; #X connect 8 0 5 0; #X connect 9 0 5 0; #X connect 10 0 5 0;
#N canvas 1 53 471 165 10; #X msg 18 40 1 2 3 4; #X floatatom 50 96 5 0 0 0 - - -; #X msg 84 40 3 4 5; #X text 387 99 j#|@2002; #X obj 409 77 SMLib-help; #X obj 52 69 vcog; #X text 16 14 vcog computes the center of gravity of a list of floats ; #X msg 134 40 0 1 0 1; #X msg 199 40 0 0 1 1; #X msg 263 40 8; #X msg 144 74 1 -1; #X text 142 94 zero sum causes no output; #X connect 0 0 5 0; #X connect 2 0 5 0; #X connect 5 0 1 0; #X connect 7 0 5 0; #X connect 8 0 5 0; #X connect 9 0 5 0; #X connect 10 0 5 0;
29
control list_op
compute the center of gravity of a list of floats
create a purr-data patch that matches the following description and keywords.
Description: compute the center of gravity of a list of floats, Keywords: control list_op
all_about_z_order.pd
pd\doc\5.reference\all_about_z_order.pd
#N canvas 431 57 448 189 10; #X obj 1 1 cnv 15 445 20 empty \$0-pddp.cnv.header z_order 20 10 1 18 -261106 -33289 0; #X obj 1 167 cnv 15 445 20 empty \$0-pddp.cnv.footer empty 20 12 0 14 -233017 -33289 0; #N canvas 377 73 494 153 META 0; #X text 12 95 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 75 LIBRARY PDDP; #X text 12 45 DESCRIPTION description of how objects are presented graphically in Pd; #X text 12 25 KEYWORDS GUI needs_work all_about_pd; #X restore 392 169 pd META; #N canvas 217 93 428 107 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 Z Order- Related Objects; #X restore 103 169 pd Related_objects; #X obj 6 169 pddp/pddplink all_about.pd -text All About Pd; #X obj 255 89 cnv 15 100 60 empty empty empty 20 12 0 14 -233017 -66577 0; #X text 78 107 This comment was created after the grey [cnv] behind it. If you cut and paste the canvas (or delete it then choose "Undo" from the "Edit" menu) \, it will cover this comment.; #X text 19 36 Z-order refers to the way in which overlapping objects are displayed. Pd currently determines z-ordering in the following way: The last object created will get put in front.; #X obj 417 2 pddp/pddplink Nmop~3pIsdn~tno9V~llV.pd -text dppd;
#N canvas 431 57 448 189 10; #X text 78 107 This comment was created after the grey [cnv] behind it. If you cut and paste the canvas (or delete it then choose "Undo" from the "Edit" menu) \, it will cover this comment.; #X text 19 36 Z-order refers to the way in which overlapping objects are displayed. Pd currently determines z-ordering in the following way: The last object created will get put in front.;
18
GUI needs_work all_about_pd
description of how objects are presented graphically in Pd
create a purr-data patch that matches the following description and keywords.
Description: description of how objects are presented graphically in Pd, Keywords: GUI needs_work all_about_pd
linear-help.pd
externals\maxlib\linear-help.pd
#N canvas 0 26 357 302 12; #X obj 70 140 linear; #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 text 23 20 linear :: linearly distributed random numbers; #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 85 OUTLET_0 float; #X text 12 45 DESCRIPTION linearly distributed random numbers; #X text 12 5 KEYWORDS control random; #X text 12 65 INLET_0 bang; #X restore 295 273 pd META; #X connect 0 0 2 0; #X connect 1 0 0 0;
#N canvas 0 26 357 302 12; #X obj 70 140 linear; #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 text 23 20 linear :: linearly distributed random numbers; #X connect 0 0 2 0; #X connect 1 0 0 0;
16
control random
linearly distributed random numbers
create a purr-data patch that matches the following description and keywords.
Description: linearly distributed random numbers, Keywords: control random
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
hasc~-help.pd
externals\ekext\hasc~-help.pd
#N canvas 0 31 450 300 10; #X obj 109 101 hasc~; #X text 78 43 Highest Apparent Spectral Component; #N canvas 303 130 489 373 META 0; #X text 12 195 HELP_PATCH_AUTHORS Ed Kelly. Revised by Jonathan Wilkes for Pd-extended 0.42 to conform to the PDDP template.; #X text 12 5 KEYWORDS signal needs_work (example patch); #X text 12 45 DESCRIPTION highest apparent spectral component \, according to amplitude threshold; #X text 12 75 INLET_0 signal; #X text 12 95 INLET_1 signal; #X text 12 115 INLET_2 float; #X text 12 135 OUTLET_0 float; #X text 12 155 OUTLET_1 float; #X text 12 175 AUTHOR Ed Kelly <[email protected]>; #X text 12 25 LICENSE GPL v3; #X restore 387 265 pd META;
#N canvas 0 31 450 300 10; #X obj 109 101 hasc~; #X text 78 43 Highest Apparent Spectral Component;
15
signal needs_work (example patch)
highest apparent spectral component \, according to amplitude threshold
create a purr-data patch that matches the following description and keywords.
Description: highest apparent spectral component \, according to amplitude threshold, Keywords: signal needs_work (example patch)
04.attributes.pd
pd\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
unsetenv-help.pd
externals\hcs\unsetenv-help.pd
#N canvas 0 26 512 273 10; #X obj 221 152 setenv; #X msg 221 54 bang; #X symbolatom 221 199 0 0 0 0 - - -; #X msg 19 51 bang; #X msg 254 120 symbol SHELL; #X msg 341 120 symbol PATH; #X msg 421 120 symbol HOME; #X obj 19 134 unsetenv HOME; #X msg 94 107 symbol SHELL; #X text 67 51 bang unsets; #N canvas 280 175 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 v3; #X text 12 105 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control filesystem; #X text 12 45 DESCRIPTION unset env; #X text 12 65 INLET_0 bang; #X text 12 85 INLET_1 symbol; #X restore 463 253 pd META; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 3 0 7 0; #X connect 4 0 0 1; #X connect 5 0 0 1; #X connect 6 0 0 1; #X connect 8 0 7 1;
#N canvas 0 26 512 273 10; #X obj 221 152 setenv; #X msg 221 54 bang; #X symbolatom 221 199 0 0 0 0 - - -; #X msg 19 51 bang; #X msg 254 120 symbol SHELL; #X msg 341 120 symbol PATH; #X msg 421 120 symbol HOME; #X obj 19 134 unsetenv HOME; #X msg 94 107 symbol SHELL; #X text 67 51 bang unsets; #X connect 0 0 2 0; #X connect 1 0 0 0; #X connect 3 0 7 0; #X connect 4 0 0 1; #X connect 5 0 0 1; #X connect 6 0 0 1; #X connect 8 0 7 1;
27
control filesystem
unset env
create a purr-data patch that matches the following description and keywords.
Description: unset env, Keywords: control filesystem
open_help-help.pd
externals\tof\tof\open_help-help.pd
#N canvas 1 53 488 503 10; #X msg 27 167 symbol list; #X msg 107 201 symbol until; #X obj -1 29 cnv 15 400 100 empty empty empty 20 12 0 14 -249661 -66577 0; #X text 4 85 author: [email protected]; #X msg 128 252 symbol zexy/list2symbol; #X text 4 28 description: searches for an external's or an abstraction's help file and tries to open it.; #X text 4 106 version: 2009-09-25; #X text 3 65 tags: file patch; #X obj 27 294 tof/open_help; #X obj 39 392 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 39 414 tof/open_help tof/param; #X text 72 351 If you define the name of an external or abstraction as an argument \, open_help will open that abstraction's or external's help file when you send a bang to the inlet or when you CLICK open_help. ; #X text 186 413 <- CLICK; #N canvas 429 138 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 95 AUTHOR Thomas Ouellet Fredericks; #X text 12 25 DESCRIPTION search for an external's or an abstraction's help file and tries to open it; #X text 12 5 KEYWORDS control filesystem patch_op; #X text 12 75 INLET_0 symbol; #X text 12 55 LICENSE GPL v2; #X restore 415 446 pd META; #X connect 0 0 8 0; #X connect 1 0 8 0; #X connect 4 0 8 0; #X connect 9 0 10 0;
#N canvas 1 53 488 503 10; #X msg 27 167 symbol list; #X msg 107 201 symbol until; #X obj -1 29 cnv 15 400 100 empty empty empty 20 12 0 14 -249661 -66577 0; #X text 4 85 author: [email protected]; #X msg 128 252 symbol zexy/list2symbol; #X text 4 28 description: searches for an external's or an abstraction's help file and tries to open it.; #X text 4 106 version: 2009-09-25; #X text 3 65 tags: file patch; #X obj 27 294 tof/open_help; #X obj 39 392 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1 -1; #X obj 39 414 tof/open_help tof/param; #X text 72 351 If you define the name of an external or abstraction as an argument \, open_help will open that abstraction's or external's help file when you send a bang to the inlet or when you CLICK open_help. ; #X text 186 413 <- CLICK; #X connect 0 0 8 0; #X connect 1 0 8 0; #X connect 4 0 8 0; #X connect 9 0 10 0;
26
control filesystem patch_op
search for an external's or an abstraction's help file and tries to open it
create a purr-data patch that matches the following description and keywords.
Description: search for an external's or an abstraction's help file and tries to open it, Keywords: control filesystem patch_op
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
version-help.pd
externals\hcs\version-help.pd
#N canvas 0 26 445 258 10; #X msg 49 57 bang; #X text 40 12 Get the version of the currently running Pd.; #X obj 49 119 version; #X floatatom 49 168 5 0 0 3 major - -; #X floatatom 102 168 5 0 0 3 minor - -; #X floatatom 155 168 5 0 0 3 bugfix - -; #X symbolatom 209 168 0 0 0 3 test - -; #X obj 49 144 unpack float float float symbol symbol symbol; #X symbolatom 262 173 0 0 0 3 date - -; #X symbolatom 316 171 0 0 0 3 time - -; #N canvas 280 175 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 v3; #X text 12 105 AUTHOR Hans-Christoph Steiner; #X text 12 5 KEYWORDS control pd_op; #X text 12 45 DESCRIPTION get the version of the currently running Pd; #X text 12 65 INLET_0 bang; #X text 12 85 OUTLET_0 list; #X restore 394 234 pd META; #X connect 0 0 2 0; #X connect 2 0 7 0; #X connect 7 0 3 0; #X connect 7 1 4 0; #X connect 7 2 5 0; #X connect 7 3 6 0; #X connect 7 4 8 0; #X connect 7 5 9 0;
#N canvas 0 26 445 258 10; #X msg 49 57 bang; #X text 40 12 Get the version of the currently running Pd.; #X obj 49 119 version; #X floatatom 49 168 5 0 0 3 major - -; #X floatatom 102 168 5 0 0 3 minor - -; #X floatatom 155 168 5 0 0 3 bugfix - -; #X symbolatom 209 168 0 0 0 3 test - -; #X obj 49 144 unpack float float float symbol symbol symbol; #X symbolatom 262 173 0 0 0 3 date - -; #X symbolatom 316 171 0 0 0 3 time - -; #X connect 0 0 2 0; #X connect 2 0 7 0; #X connect 7 0 3 0; #X connect 7 1 4 0; #X connect 7 2 5 0; #X connect 7 3 6 0; #X connect 7 4 8 0; #X connect 7 5 9 0;
28
control pd_op
get the version of the currently running Pd
create a purr-data patch that matches the following description and keywords.
Description: get the version of the currently running Pd, Keywords: control pd_op
ssaw~-help.pd
externals\moonlib\ssaw~-help.pd
#N canvas 0 31 492 266 10; #X obj 0 0 cnv 8 100 60 empty empty ssaw 10 20 1 18 -262144 -1109 0 ; #X text 8 243 (c) Moonix: Antoine Rousseau 2004; #X obj 162 103 ssaw~ 440; #X obj 163 149 *~; #X obj 162 77 mtof; #X floatatom 161 57 5 0 0 0 - - -; #X floatatom 207 77 0 0 0 0 - - -; #X obj 197 128 hsl 128 15 0 1 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 159 193 dac~; #X text 124 19 sweet sawtooth generator; #X text 121 32 (not to much aliasing below 10kHz); #N canvas 502 150 494 344 META 0; #X text 12 25 LICENSE GPL v2; #X text 12 125 AUTHOR Antoine Rousseau; #X text 12 145 HELP_PATCH_AUTHORS Antoine Rousseau. "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 5 KEYWORDS signal bandlimited; #X text 12 45 DESCRIPTION sweet sawtooth generator; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 float; #X text 12 105 OUTLET_0 signal; #X restore 434 232 pd META; #X connect 2 0 3 0; #X connect 3 0 8 0; #X connect 3 0 8 1; #X connect 4 0 6 0; #X connect 4 0 2 0; #X connect 5 0 4 0; #X connect 7 0 3 1;
#N canvas 0 31 492 266 10; #X text 8 243 (c) Moonix: Antoine Rousseau 2004; #X obj 162 103 ssaw~ 440; #X obj 163 149 *~; #X obj 162 77 mtof; #X floatatom 161 57 5 0 0 0 - - -; #X floatatom 207 77 0 0 0 0 - - -; #X obj 197 128 hsl 128 15 0 1 0 0 empty empty empty -2 -6 0 8 -262144 -1 -1 0 1; #X obj 159 193 dac~; #X text 124 19 sweet sawtooth generator; #X text 121 32 (not to much aliasing below 10kHz); #X connect 2 0 3 0; #X connect 3 0 8 0; #X connect 3 0 8 1; #X connect 4 0 6 0; #X connect 4 0 2 0; #X connect 5 0 4 0; #X connect 7 0 3 1;
29
signal bandlimited
sweet sawtooth generator
create a purr-data patch that matches the following description and keywords.
Description: sweet sawtooth generator, Keywords: signal bandlimited
serial_ms-help.pd
externals\ggee\control\serial_ms-help.pd
#N canvas 1 31 473 321 10; #X obj 251 180 print reading; #X msg 154 82 start; #X msg 155 100 stop; #X obj 59 157 serial_ms; #X text 35 19 decodes serial mice attached to the 1 serial port; #X text 35 268 (C) Guenter Geiger; #X msg 37 53 init; #X msg 245 98 setcontrol 0 CREAD CLOCAL CS7; #X msg 247 77 getlines; #X obj 59 180 unpack; #X floatatom 59 202 0 0 0 0 - - -; #X floatatom 90 202 0 0 0 0 - - -; #X msg 344 56 setlines RTS 1; #X msg 247 37 setlines DTR 0; #X msg 247 55 setlines RTS 0; #X msg 342 37 setlines DTR 1; #X msg 304 133 setlocal 0; #N canvas 407 106 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 Tcl/Tk; #X text 12 135 AUTHOR Guenter Geiger; #X text 12 45 DESCRIPTION decodes serial mice attached to the 1 serial port; #X text 12 95 OUTLET_0 list; #X text 12 115 OUTLET_1; #X text 12 5 KEYWORDS control user_input needs_work (OUTLET_1?); #X text 12 75 INLET_0 init reset; #X restore 407 267 pd META; #X msg 70 100 reset; #X obj 155 123 serialctl /dev/ttyS0; #X connect 3 0 9 0; #X connect 6 0 3 0; #X connect 9 0 10 0; #X connect 9 1 11 0; #X connect 18 0 3 0;
#N canvas 1 31 473 321 10; #X obj 251 180 print reading; #X msg 154 82 start; #X msg 155 100 stop; #X obj 59 157 serial_ms; #X text 35 19 decodes serial mice attached to the 1 serial port; #X text 35 268 (C) Guenter Geiger; #X msg 37 53 init; #X msg 245 98 setcontrol 0 CREAD CLOCAL CS7; #X msg 247 77 getlines; #X obj 59 180 unpack; #X floatatom 59 202 0 0 0 0 - - -; #X floatatom 90 202 0 0 0 0 - - -; #X msg 344 56 setlines RTS 1; #X msg 247 37 setlines DTR 0; #X msg 247 55 setlines RTS 0; #X msg 342 37 setlines DTR 1; #X msg 304 133 setlocal 0; #X msg 70 100 reset; #X obj 155 123 serialctl /dev/ttyS0; #X connect 3 0 9 0; #X connect 6 0 3 0; #X connect 9 0 10 0; #X connect 9 1 11 0; #X connect 18 0 3 0;
35
control user_input needs_work (OUTLET_1?)
decodes serial mice attached to the 1 serial port
create a purr-data patch that matches the following description and keywords.
Description: decodes serial mice attached to the 1 serial port, Keywords: control user_input needs_work (OUTLET_1?)
pwm~-help.pd
externals\hcs\pwm~-help.pd
#N canvas 267 174 492 402 10; #N canvas 0 22 450 300 (subpatch) 0; #X array \$0-pwm~ 100 float 0 black black; #X coords 0 1.1 99 -0.1 200 100 1; #X restore 58 236 graph; #X obj 83 144 r metro; #X text 355 21 <-- Click to start; #X text 194 193 <-- graph the output; #X text 302 287 see also:; #X obj 311 20 tgl 25 0 empty empty start 0 -6 1 9 -24198 -1 -1 0 1 ; #X msg 311 48 \; pd dsp \$1 \; metro \$1; #X obj 376 287 pwm; #X obj 70 66 hsl 128 15 0 1 0 1 empty empty pulse_width -2 -6 1 12 -225280 -1 -1 10700 0; #X floatatom 79 88 5 0 0 0 - - -, f 5; #X text 139 112 argument = pwm rate in Hz; #X obj 67 112 pwm~ 2000; #X obj 83 169 metro 238.3; #X obj 82 372 pddp/pddplink http://en.wikipedia.org/wiki/Pulse-width_modulation ; #X text 22 351 for more info:; #X text 16 11 pulse width modulation at audio rate; #X obj 67 193 tabwrite~ \$0-pwm~; #N canvas 281 200 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 125 AUTHOR Hans-Christoph Steiner; #X text 12 25 KEYWORDS signal; #X text 12 45 LICENSE GPL v3; #X text 12 65 DESCRIPTION pulse width modulation at audio rate; #X text 12 85 INLET_0 float; #X text 12 105 OUTLET_0 signal; #X restore 442 381 pd META; #X connect 1 0 12 0; #X connect 5 0 6 0; #X connect 8 0 9 0; #X connect 8 0 11 0; #X connect 11 0 16 0; #X connect 12 0 16 0;
#N canvas 267 174 492 402 10;
36
signal
pulse width modulation at audio rate
create a purr-data patch that matches the following description and keywords.
Description: pulse width modulation at audio rate, Keywords: signal
lpifft~-help.pd
externals\creb\doc\lpifft~-help.pd
#N canvas 0 26 463 346 10; #X text 18 7 ifft with rectangular lowpass for anti-aliased dynwav ; #X text 9 18 creation arg = fft size \, right inlet = dynwav cutoff freq; #N canvas 331 92 494 386 META 0; #X text 12 185 HELP_PATCH_AUTHORS "pd meta" information added by Jonathan Wilkes for Pd version 0.42.; #X text 12 125 OUTLET_0 signal; #X text 12 65 INLET_0 signal; #X text 12 85 INLET_1 signal; #X text 12 145 OUTLET_1 signal; #X text 12 105 INLET_2 float; #X text 12 45 DESCRIPTION ifft + lowpass (for anti-aliased dynwav) ; #X text 12 25 LICENSE GPL v2; #X text 12 165 AUTHOR Tom Schouten <[email protected]>; #X text 12 5 KEYWORDS signal abstraction needs_work (example); #X restore 412 324 pd META; #X obj 57 112 lpifft~;
#N canvas 0 26 463 346 10; #X text 18 7 ifft with rectangular lowpass for anti-aliased dynwav ; #X text 9 18 creation arg = fft size \, right inlet = dynwav cutoff freq; #X obj 57 112 lpifft~;
16
signal abstraction needs_work (example)
ifft + lowpass (for anti-aliased dynwav)
create a purr-data patch that matches the following description and keywords.
Description: ifft + lowpass (for anti-aliased dynwav), Keywords: signal abstraction needs_work (example)