-- | (Undocumented class) module Sound.SC3.UGen.Record.BlitB3Saw where import qualified Sound.SC3.UGen as S import Sound.SC3.UGen.Record data BlitB3Saw = BlitB3Saw { freq :: S.UGen, leak :: S.UGen } deriving (Show) blitB3Saw :: BlitB3Saw blitB3Saw = BlitB3Saw { freq = 440.0, leak = 0.99 } mkBlitB3Saw :: BlitB3Saw -> S.UGen mkBlitB3Saw (BlitB3Saw a' b') = S.mkOsc S.AR "BlitB3Saw" [a',b'] 1 instance Make BlitB3Saw where ugen = mkBlitB3Saw