Class/Object

de.sciss.synth.ugen

XOut

Related Docs: object XOut | package ugen

Permalink

final case class XOut(rate: Rate, bus: GE, in: GE, xfade: GE) extends ZeroOut with HasSideEffect with IsIndividual with Product with Serializable

A UGen that cross-fades the contents of a bus with an input signal. A linear cross-fade can go from 0.0 (previous bus contents preserved, no input signal added) via 0.5 (previous signal attenuated by -6 dB, input signal attenuated by -6 dB and added) to 1.0 (contents completely replaced by input signal).

bus

bus index to write to. For an audio-rate UGen, this is an audio-bus, for a control-rate UGen, this is a control-bus.

in

signal to write to the bus. If the UGen is audio-rate, the input must also be audio-rate.

xfade

cross-fade value. The new bus contents will be old_bus_content * (1 - xfade) + in * xfade

Note

The argument order is different from its sclang counterpart.

See also

XOut

Out

In

Linear Supertypes
Serializable, Serializable, IsIndividual, HasSideEffect, ZeroOut, UGenSource[Unit], Expander[Unit], Lazy, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XOut
  2. Serializable
  3. Serializable
  4. IsIndividual
  5. HasSideEffect
  6. ZeroOut
  7. UGenSource
  8. Expander
  9. Lazy
  10. Product
  11. Equals
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new XOut(rate: Rate, bus: GE, in: GE, xfade: GE)

    Permalink

    bus

    bus index to write to. For an audio-rate UGen, this is an audio-bus, for a control-rate UGen, this is a control-bus.

    in

    signal to write to the bus. If the UGen is audio-rate, the input must also be audio-rate.

    xfade

    cross-fade value. The new bus contents will be old_bus_content * (1 - xfade) + in * xfade

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val bus: GE

    Permalink

    bus index to write to.

    bus index to write to. For an audio-rate UGen, this is an audio-bus, for a control-rate UGen, this is a control-bus.

  6. def clone(): AnyRef

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

    Permalink
    Definition Classes
    AnyRef
  8. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. lazy val hashCode: Int

    Permalink
    Definition Classes
    UGenSource → AnyRef → Any
  11. val in: GE

    Permalink

    signal to write to the bus.

    signal to write to the bus. If the UGen is audio-rate, the input must also be audio-rate.

  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def makeUGen(_args: Vec[UGenIn]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    XOut → UGenSource
  14. def makeUGens: Unit

    Permalink
    Attributes
    protected
    Definition Classes
    XOut → Expander
  15. final def name: String

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

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. val rate: Rate

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

    Permalink
    Definition Classes
    AnyRef
  21. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. val xfade: GE

    Permalink

    cross-fade value.

    cross-fade value. The new bus contents will be old_bus_content * (1 - xfade) + in * xfade

Inherited from Serializable

Inherited from Serializable

Inherited from IsIndividual

Inherited from HasSideEffect

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