42 lines
542 B
Text
42 lines
542 B
Text
|
class:: Wrap
|
||
|
summary:: Wrap a signal outside given thresholds.
|
||
|
related:: Classes/Clip, Classes/Fold
|
||
|
categories:: UGens>Maths
|
||
|
|
||
|
|
||
|
Description::
|
||
|
|
||
|
This differs from the link::Classes/BinaryOpUGen:: link::Overviews/Methods#wrap2#wrap2:: in that it
|
||
|
allows one to set both low and high thresholds.
|
||
|
|
||
|
|
||
|
classmethods::
|
||
|
|
||
|
method::ar, kr
|
||
|
|
||
|
argument::in
|
||
|
|
||
|
Signal to be wrapped.
|
||
|
|
||
|
|
||
|
argument::lo
|
||
|
|
||
|
Low threshold of wrapping.
|
||
|
|
||
|
|
||
|
argument::hi
|
||
|
|
||
|
High threshold of wrapping.
|
||
|
|
||
|
|
||
|
Examples::
|
||
|
|
||
|
code::
|
||
|
|
||
|
s.boot;
|
||
|
|
||
|
{ Wrap.ar(SinOsc.ar(440, 0, 0.2), -0.15, 0.15) }.scope;
|
||
|
|
||
|
::
|
||
|
|