Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / Line.schelp
blob2d2e77a3b6478325c8cb971e1c264e7d564dc3de
1 class:: Line
2 summary:: Line generator.
3 related:: Classes/XLine
4 categories::  UGens>Envelopes
7 Description::
9 Generates a line from the start value to the end value.
12 classmethods::
14 method::ar, kr
16 argument::start
18 Starting value.
21 argument::end
23 Ending value.
26 argument::dur
28 Duration in seconds.
31 argument::mul
33 Output will be multiplied by this value.
36 argument::add
38 This value will be added to the output.
41 argument::doneAction
43 A doneAction to be evaluated when the Line is completed. See
45 link::Reference/UGen-doneActions::  for more detail.
48 Examples::
50 code::
52 // XLine is usually better than Line for frequency
53 play({ SinOsc.ar(Line.kr(200,17000,10),0,0.1) });