class library: quit internal server on class library compilation
[supercollider.git] / HelpSource / Tutorials / Mark_Polishook_tutorial / 11_Test_functions.schelp
bloba074ad17d0d0ef5b62d826c4863d81eb80610b1b
1 title:: 11_Test_functions
2 summary:: Mark Polishook tutorial
3 categories:: Tutorials>Mark_Polishook_tutorial
4 related:: Tutorials/Mark_Polishook_tutorial/00_Introductory_tutorial
6 section::Functions and .scope messages
8 An easy way to audition synthesis processes is to test them within a function. To do this, append a .scope or a .play message to a function. The .scope message, which works only with the internal server, displays a visual representation of a sound wave.
10 ////////////////////////////////////////////////////////////////////////////////////////////////////
12 Boot (turn on) the internal server
14 code::
15 Server.internal.boot;
18 Run this example, and look at the scope window.
20 code::
21 // test a synthesis process in a function
23         {
24                 SinOsc.ar([440.067, 441.013], 0, 1)
25                 *
26                 SinOsc.ar([111, 109], 0, 0.2)
27         }.scope;
31 ////////////////////////////////////////////////////////////////////////////////////////////////////
33 Code can be transfered from a test function into a synthdef. In the following example, the code from the function (above) is the second argument to the Out ugen.
35 code::
37 SynthDef("ringMod", {
38         Out.ar(
39                 0,
40                 SinOsc.ar([440.067, 441.013], 0, 1)
41                 *
42                 SinOsc.ar([111, 109], 0, 0.2)
43         )
44 }).add;
47 Synth("ringMod")
50 section::Multi-channel expansion
52 Expand a ugen to two channels with an array in any of the argument (control) slots.
54 code::
55 { Saw.ar([500, 933], 0.1) }.scope;
58 Another (longer) way to write the same thing is
60 code::
61 { [ Saw.ar(500, 0.1), Saw.ar(933, 0.1)] }.scope;
64 Expand a ugen to three channels by adding values to the array.
66 code::
67 { Saw.ar([500, 933, 2033], 0.1) }.scope;
69 // 4 channels
71 { Saw.ar([500, 933, 2033, 895], 0.1) }.scope;
74 ////////////////////////////////////////////////////////////////////////////////////////////////////
76 go to link::Tutorials/Mark_Polishook_tutorial/12_UnaryOp_synthesis::