Packages

package ugen

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. 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

Value Members

  1. object Trace extends Serializable

Ungrouped