-- | The vital tools.
module Csound.Air (
-- | The basic sound waves: pure sine, sawtooth, square, triangle, LFOs.
module Csound.Air.Wave,
-- | Envelope generators.
module Csound.Air.Envelope,
-- | Filters
module Csound.Air.Filter,
-- | Sound file playback
module Csound.Air.Wav,
-- | Spectral Processing
module Csound.Air.Spec,
-- | Effects: reverbs, choruses, delays etc.
module Csound.Air.Fx,
-- | Widgets to make live performances.
module Csound.Air.Live,
-- | Scheduling signals with event streams
module Csound.Air.Seg,
-- | Triggering sound samples with events, keyboard and midi.
module Csound.Air.Sampler,
-- | Other usefull stuff.
module Csound.Air.Misc
) where
import Csound.Air.Wave
import Csound.Air.Envelope
import Csound.Air.Filter
import Csound.Air.Wav
import Csound.Air.Spec
import Csound.Air.Fx
import Csound.Air.Live
import Csound.Air.Seg
import Csound.Air.Sampler
import Csound.Air.Misc