wavetable/lib.rs
1//! A library for creating and using wavetables for sound generation.
2
3#![allow(dead_code)]
4#![allow(unused_imports)]
5
6pub mod wavetable;
7pub mod wt_creator;
8pub mod wt_manager;
9pub mod wt_oscillator;
10pub mod wt_reader;
11
12pub use self::wavetable::{Wavetable, WavetableRef};
13pub use wt_creator::WtCreator;
14pub use wt_manager::{WtManager, WtInfo};
15pub use wt_oscillator:: WtOsc;
16pub use wt_reader::WtReader;
17
18pub type Float = f64;
19