hsc3-rec-0.14: Sound/SC3/UGen/Record/Rotate.hs
-- | (Undocumented class)
module Sound.SC3.UGen.Record.Rotate where
import qualified Sound.SC3.UGen as S
import Sound.SC3.UGen.Record
data Rotate = Rotate {
w :: S.UGen,
x :: S.UGen,
y :: S.UGen,
z :: S.UGen,
rotate :: S.UGen
} deriving (Show)
rotate :: Rotate
rotate = Rotate {
w = 0.0,
x = 0.0,
y = 0.0,
z = 0.0,
rotate = 0.0
}
mkRotate :: Rotate -> S.UGen
mkRotate (Rotate a' b' c' d' e') = S.mkOsc S.AR "Rotate" [a',b',c',d',e'] 4
instance Make Rotate where
ugen = mkRotate