hsc3-rec-0.14: Sound/SC3/UGen/Record/InsideOut.hs
-- | (Undocumented class)
module Sound.SC3.UGen.Record.InsideOut where
import qualified Sound.SC3.UGen as S
import Sound.SC3.UGen.Record
data InsideOut = InsideOut {
rate :: S.Rate,
in :: S.UGen
} deriving (Show)
insideOut :: InsideOut
insideOut = InsideOut {
rate = S.AR,
in = 0.0
}
mkInsideOut :: InsideOut -> S.UGen
mkInsideOut (InsideOut r a') = S.mkOsc r "InsideOut" [a'] 1
instance Make InsideOut where
ugen = mkInsideOut