de.sciss.fscape.graph.ImageFileOut.scala Maven / Gradle / Ivy
/*
* ImageFileOut.scala
* (FScape)
*
* Copyright (c) 2001-2016 Hanns Holger Rutz. All rights reserved.
*
* This software is published under the GNU General Public License v2+
*
*
* For further information, please contact Hanns Holger Rutz at
* [email protected]
*/
package de.sciss.fscape
package graph
import de.sciss.file.File
import de.sciss.fscape.stream.StreamIn
import scala.collection.immutable.{IndexedSeq => Vec}
final case class ImageFileOut(file: File, spec: ImageFile.Spec, in: GE) extends UGenSource.ZeroOut {
protected def makeUGens(implicit b: UGenGraph.Builder): Unit = unwrap(in.expand.outputs)
protected def makeUGen(args: Vec[UGenIn])(implicit b: UGenGraph.Builder): Unit =
UGen.ZeroOut(this, inputs = args, rest = file :: spec :: Nil, isIndividual = true)
private[fscape] def makeStream(args: Vec[StreamIn])(implicit b: stream.Builder): Unit = {
stream.ImageFileOut(file = file, spec = spec, in = args.map(_.toDouble))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy