From dcfc4e82386f41bd36c3b102512bd225fc5331b6 Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Wed, 20 Sep 2017 01:49:04 -0400 Subject: more of the same for the night :) --- src/synth/mod.rs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/synth/mod.rs') 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; 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; -- cgit v1.2.3-70-g09d2