File: PrintVal.schelp

package info (click to toggle)
supercollider-sc3-plugins 3.7.1~repack-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,332 kB
  • ctags: 11,704
  • sloc: cpp: 140,180; lisp: 14,746; ansic: 2,133; xml: 86; makefile: 82; haskell: 21; sh: 8
file content (43 lines) | stat: -rw-r--r-- 1,061 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class:: PrintVal			
summary:: debug assistance
categories:: UGens>Unclassified
//SLUGens released under the GNU GPL as extensions for SuperCollider 3, by Nick Collins, http://composerprogrammer.com/index.html
keyword:: SLUGens


Description::
This is sometimes helpful just to check output values- it should post to the Post Window, but don't make it post too often or the CPU use will rise dramatically.  

NOTE: this UGen is now here really for backwards compatibility; try doing .poll to any running UGen to get printed data back.

classmethods::

method::ar

argument::in
input to sample (.kr rate)
argument::numblocks
print the value after this number of control periods (44100/64 is about 689 per second)
argument::id
give a tag to the printing so that you can use more than one in a patch to test multiple things

Examples::

code::
SynthDef("help-PrintVal",{PrintVal.kr(SinOsc.kr(440,0,0.1), 100)}).play


//two at once
(
SynthDef("help-PrintVal",{

PrintVal.kr(SinOsc.kr(440,0,0.1), 100, 1);

PrintVal.kr(LFNoise1.kr(100,0.1), 10, 2);

}).play
)



::