1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! A library for creating and using wavetables for sound generation.

#![allow(dead_code)]
#![allow(unused_imports)]

pub mod wavetable;
pub mod wt_creator;
pub mod wt_manager;
pub mod wt_oscillator;
pub mod wt_reader;

pub use self::wavetable::{Wavetable, WavetableRef};
pub use wt_creator::WtCreator;
pub use wt_manager::{WtManager, WtInfo};
pub use wt_oscillator:: WtOsc;
pub use wt_reader::WtReader;

pub type Float = f64;