Pwrap:
Filter:
Description
Class methods
Inherited class methods
Undocumented class methods
new
Instance methods
Inherited instance methods
Undocumented instance methods
embedInStream
hi
lo
Examples
Classes
|
Streams-Patterns-Events
>
Patterns
>
Math
Pwrap
:
FilterPattern
:
Pattern
:
AbstractFunction
:
Object
constrain the range of output values by wrapping
Source:
FilterPatterns.sc
See also:
SimpleNumber
Description
Note: this is equivalent to pattern.wrap(lo, hi)
Class Methods
Inherited class methods
Undocumented class methods
Pwrap.
new
(
pattern
,
lo
,
hi
)
Instance Methods
Inherited instance methods
Undocumented instance methods
.
embedInStream
(
event
)
.
hi
.
hi
= value
.
lo
.
lo
= value
Examples
( SynthDef(\help_sinegrain, { arg out=0, freq=440, sustain=0.05; var env; env = EnvGen.kr(Env.perc(0.01, sustain, 0.2), doneAction: Done.freeSelf); Out.ar(out, SinOsc.ar(freq, 0, env)) }).add; ) ( a = Pn( Pwrap( Pgeom(200,1.07,96), 200, 1000.0 ), inf ); x = a.asStream; Routine({ loop({ Synth(\help_sinegrain, [\freq, x.next.debug,\dur,0.3]); 0.12.wait; }) }).play; )
helpfile source:
/usr/local/share/SuperCollider/HelpSource/Classes/Pwrap.schelp
link::Classes/Pwrap::