hsc3-rec-0.12: Sound/SC3/UGen/Record/FFTFluxPos.hs
-- | (not documented)
module Sound.SC3.UGen.Record.FFTFluxPos where
import qualified Sound.SC3.UGen as S
import Sound.SC3.UGen.Record
data FFTFluxPos = FFTFluxPos {
buffer :: S.UGen,
normalise :: S.UGen
} deriving (Show)
fFTFluxPos :: FFTFluxPos
fFTFluxPos = FFTFluxPos {
buffer = 0.0,
normalise = 1.0
}
mkFFTFluxPos :: FFTFluxPos -> S.UGen
mkFFTFluxPos (FFTFluxPos a' b') = S.mkOsc S.KR "FFTFluxPos" [a',b'] 1
instance Make FFTFluxPos where
ugen = mkFFTFluxPos