Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / HelpSource / Classes / SinOscFB.schelp
blobf7d357317cd958892dd2113ff4efc7b29aac3cf8
1 class:: SinOscFB
2 summary:: Feedback FM oscillator
3 related:: Classes/SinOsc, Classes/FSinOsc, Classes/PMOsc
4 categories::  UGens>Generators>Deterministic, UGens>Generators>Chaotic
7 Description::
9 SinOscFB is a sine oscillator that has phase modulation feedback; its output plugs back into the phase input.
10 Basically this allows a modulation between a sine wave and a sawtooth like wave. Overmodulation causes chaotic oscillation. It may be useful if you want to simulate feedback FM synths.
15 classmethods::
17 method::ar, kr
19 argument::freq
21 The base frequency of the sine oscillator in Hertz.
23 argument::feedback
25 The second argument is the amplitude of phase feedback in radians.
27 argument::mul
29 Output will be multiplied by this value.
31 argument::add
33 This value will be added to the output after any multiplication.
36 Examples::
38 code::
41 {SinOscFB.ar(440,MouseX.kr(0,4))*0.1}.play
44 {SinOscFB.ar(MouseY.kr(10,1000,'exponential'),MouseX.kr(0.5pi,pi))*0.1}.play
47 {SinOscFB.ar(100*SinOscFB.ar(MouseY.kr(1,1000,'exponential'))+200,MouseX.kr(0.5pi,pi))*0.1}.play
50 // Scope the wave form
51 { SinOscFB.ar([400,301], MouseX.kr(0,4),0.3); }.scope;