package ugen
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
final
case class
Trace
(in: GE, label: String = "debug") extends ZeroOut with Product with Serializable
A graph element that adds tracing to its input argument.
A graph element that adds tracing to its input argument.
Example:
val g = traceGraph { val n = WhiteNoise.ar Trace(n, "noise") Pan2.ar(n) } val x = g.play() val fut = x.traceFor(numFrames = 10) // Future fut.foreach { traces => traces.foreach(_.print()) }
- in
the signal to monitor; can be multi-channel.
- label
the label to associate with the element, as it shows up in a GUI