summaryrefslogtreecommitdiff
path: root/src/synth/mod.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-09-20 01:49:04 -0400
committerGraham Northup <grissess@nexusg.org>2017-09-20 01:49:04 -0400
commitdcfc4e82386f41bd36c3b102512bd225fc5331b6 (patch)
treeb0b4e8ee6bf95be9970cfad37ef087cce472393b /src/synth/mod.rs
parent9866c0f34c268a09ecaaa9a4361c1c267799358e (diff)
more of the same for the night :)
Diffstat (limited to 'src/synth/mod.rs')
-rw-r--r--src/synth/mod.rs16
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;