de.sciss.synth.trace.ugen

Trace

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.

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

Linear Supertypes
Serializable, Serializable, ZeroOut, UGenSource[Unit], Expander[Unit], Lazy, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Trace
  2. Serializable
  3. Serializable
  4. ZeroOut
  5. UGenSource
  6. Expander
  7. Lazy
  8. Product
  9. Equals
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Trace(in: GE, label: String = "debug")

    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. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. lazy val hashCode: Int

    Definition Classes
    UGenSource → AnyRef → Any
  12. val in: GE

    the signal to monitor; can be multi-channel.

  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. val label: String

    the label to associate with the element, as it shows up in a GUI

  15. def makeUGen(args: Vec[UGenIn]): Unit

    Definition Classes
    Trace → UGenSource
  16. def makeUGens: Unit

    Attributes
    protected
    Definition Classes
    Trace → Expander
  17. final def name: String

    Definition Classes
    UGenSource
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def rate: MaybeRate

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from ZeroOut

Inherited from UGenSource[Unit]

Inherited from Expander[Unit]

Inherited from Lazy

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped