-- | (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