Packages

p

de.sciss

fscape

package fscape

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. fscape
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait GE extends Product

    The main trait used in an FScape graph, a graph element, abbreviated as GE.

    The main trait used in an FScape graph, a graph element, abbreviated as GE.

    A lot of operations on GE are defined separately in GEOps1 and GEOps2

    See also

    GEOps1

    GEOps2

  2. final class GEComplexOps extends AnyVal
  3. final class GEOps1 extends AnyVal

    GEOps1 are operations for graph elements (GE).

    GEOps1 are operations for graph elements (GE). Instead of having these operations directly defined in each element, which is a huge list, they appear here as extension methods. GEOps1 are unary operators, whereas GEOps2 are binary and n-ary operators.

    See also

    GE

    GEOps2

  4. final class GEOps2 extends AnyVal

    GEOps2 are operations for graph elements (GE).

    GEOps2 are operations for graph elements (GE). Instead of having these operations directly defined in each element, which is a huge list, they appear here as extension methods. GEOps1 are unary operators, whereas GEOps2 are binary and n-ary operators.

    See also

    GE

    GEOps1

  5. final case class Graph(sources: IndexedSeq[Lazy]) extends Product with Serializable
  6. trait Lazy extends Product

    Elements implementing the Lazy trait may participate in the building of a Graph body.

    Elements implementing the Lazy trait may participate in the building of a Graph body. They can be added to the current graph by calling Graph.builder.addLazy. Then, when the graph is expanded, the force method is called on those registered elements, allowing them to either spawn new graph elements or actually expand to UGens which can be added to the ugen graph builder argument.

    In most cases, lazy elements will expanded to ugens, and thus the subtype Lazy.Expander is the most convenient way to implement this trait, as it already does most of the logic, and provides for GEs expand method.

    See also

    de.sciss.fscape.Lazy.Expander

  7. sealed trait UGen extends Product

    A UGen during graph building process is a more rich thing than RawUGen: it implements equality based on isIndividual status and may be omitted from the final graph based on hasSideEffect status.

  8. final case class UGenGraph(runnable: RunnableGraph[NotUsed]) extends Product with Serializable
  9. sealed trait UGenIn extends UGenInLike

    An element that can be used as an input to a UGen.

    An element that can be used as an input to a UGen. This is after multi-channel-expansion, hence implementing classes are SingleOutUGen, UGenOutProxy, ControlOutProxy, and Constant.

  10. sealed trait UGenInLike extends GE
  11. sealed trait UGenSource[U, S] extends Expander[U]

Value Members

  1. implicit def doubleGeOps2(d: Double): GEOps2
  2. implicit def geOps1(g: GE): GEOps1
  3. implicit def geOps2(g: GE): GEOps2
  4. implicit def intGeOps2(i: Int): GEOps2
  5. var showControlLog: Boolean
  6. var showGraphLog: Boolean
  7. var showStreamLog: Boolean
  8. object BuildInfo extends Product with Serializable

    This object was generated by sbt-buildinfo.

  9. object Filter
  10. object GE
  11. object Graph extends Serializable
  12. object Lazy
  13. object UGen
  14. object UGenGraph extends Serializable
  15. object UGenInLike
  16. object UGenSource
  17. object Util

Inherited from AnyRef

Inherited from Any

Ungrouped