diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-20 01:49:04 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-20 01:49:04 -0400 |
commit | dcfc4e82386f41bd36c3b102512bd225fc5331b6 (patch) | |
tree | b0b4e8ee6bf95be9970cfad37ef087cce472393b /src/synth/mod.rs | |
parent | 9866c0f34c268a09ecaaa9a4361c1c267799358e (diff) |
more of the same for the night :)
Diffstat (limited to 'src/synth/mod.rs')
-rw-r--r-- | src/synth/mod.rs | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/synth/mod.rs b/src/synth/mod.rs index bf73200..4f23a01 100644 --- a/src/synth/mod.rs +++ b/src/synth/mod.rs @@ -60,6 +60,10 @@ impl SampleBuffer { self.samples.len() } + pub fn iter_mut<'a>(&'a mut self) -> slice::IterMut<'a, f32> { + self.samples.iter_mut() + } + pub fn first(&self) -> Sample { *self.samples.first().unwrap() } @@ -158,7 +162,11 @@ pub type GenBox = Box<Generator>; pub mod param; pub use self::param::Param; pub mod math; -pub use self::math::{Add, Mul}; +pub use self::math::{Add, Mul, Negate, Reciprocate}; +pub mod rel; +pub use self::rel::{Rel, RelOp}; +pub mod logic; +pub use self::logic::IfElse; pub mod sine; pub use self::sine::Sine; pub mod saw; @@ -167,5 +175,7 @@ pub mod triangle; pub use self::triangle::Triangle; pub mod square; pub use self::square::Square; -//pub mod asdr; -//pub use self::asdr::ASDR; +pub mod noise; +pub use self::noise::Noise; +//pub mod adsr; +//pub use self::adsr::ADSR; |