Packages

  • package root
    Definition Classes
    root
  • package de
    Definition Classes
    root
  • package sciss
    Definition Classes
    de
  • package synth
    Definition Classes
    sciss
  • object Ops

    Importing the contents of this object adds imperative (side-effect) functions to resources such as synths, buses, buffers.

    Importing the contents of this object adds imperative (side-effect) functions to resources such as synths, buses, buffers. In general these reflect the OSC messages defined for each object, and send them straight to the server. For example, a Synth has function newMsg which returns an OSC message to instantiate the synth of the server. After importing Ops, you will be able to directly launch a synth using SynthDef.play or Synth.play. You will be able to directly allocate and read buffers, and so forth.

    The reason why these functions are separated from the rest of the API is to allow other frameworks such as SoundProcesses to avoid side-effects which they handle differently (e.g., using STM).

    Definition Classes
    synth
  • BufferConstructors
  • BufferOps
  • ControlBusOps
  • EnvOps
  • GroupConstructors
  • GroupOps
  • NodeOps
  • ServerOps
  • SynthConstructors
  • SynthDefConstructors
  • SynthDefOps
  • SynthOps

implicit final class NodeOps extends AnyVal

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NodeOps(n: Node)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def fill(data: ControlFillRange*): Unit
  6. def free(): Unit
  7. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  8. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  9. def map(pairs: Single*): Unit
  10. def mapa(pairs: Single*): Unit

    Creates a mapping from a mono-channel audio bus to one of the node's controls.

    Creates a mapping from a mono-channel audio bus to one of the node's controls.

    Note that a mapped control acts similar to an InFeedback UGen in that it does not matter whether the audio bus was written before the execution of the synth whose control is mapped or not. If it was written before, no delay is introduced, otherwise a delay of one control block is introduced.

    See also

    de.sciss.synth.ugen.InFeedback

  11. def mapan(mappings: ControlABusMap*): Unit

    Creates a mapping from a mono- or multi-channel audio bus to one of the node's controls.

    Creates a mapping from a mono- or multi-channel audio bus to one of the node's controls.

    Note that a mapped control acts similar to an InFeedback UGen in that it does not matter whether the audio bus was written before the execution of the synth whose control is mapped or not. If it was written before, no delay is introduced, otherwise a delay of one control block is introduced.

    See also

    de.sciss.synth.ugen.InFeedback

  12. def mapn(mappings: ControlKBusMap*): Unit
  13. def moveAfter(node: Node): Unit

    Moves this node after another node

    Moves this node after another node

    node

    the node after which to move this node

    See also

    de.sciss.synth.message.NodeAfter

  14. def moveBefore(node: Node): Unit

     Moves this node before another node

     Moves this node before another node

    node

    the node before which to move this node

    See also

    de.sciss.synth.message.NodeBefore

  15. def moveToHead(group: Group): Unit

    Moves this node to the head of a given group

    Moves this node to the head of a given group

    group

    the target group

    See also

    de.sciss.synth.message.GroupHead

  16. def moveToTail(group: Group): Unit

    Moves this node to the tail of a given group

    Moves this node to the tail of a given group

    group

    the target group

    See also

    de.sciss.synth.message.GroupTail

  17. def release(releaseTime: Double = -1.0): Unit
  18. def run(flag: Boolean = true): Unit

    Pauses or resumes the node.

    Pauses or resumes the node.

    flag

    if true the node is resumed, if false it is paused.

  19. def set(pairs: ControlSet*): Unit
  20. def setn(pairs: ControlSet*): Unit
  21. def toString(): String
    Definition Classes
    Any
  22. def trace(): Unit

Inherited from AnyVal

Inherited from Any

Ungrouped