de.sciss.synth.ugen.ChannelProxy.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalacollider_2.10.0-RC2 Show documentation
Show all versions of scalacollider_2.10.0-RC2 Show documentation
A sound synthesis library for the SuperCollider server
The newest version!
package de.sciss.synth
package ugen
final case class ChannelProxy( elem: GE, index: Int ) extends GE.Lazy {
def rate = elem.rate
def displayName = "ChannelProxy"
override def toString = elem.toString + ".\\(" + index + ")"
def makeUGens : UGenInLike = {
val _elem = elem.expand
_elem.unwrap( index )
}
}