summaryrefslogtreecommitdiff
path: root/klangfarbrs
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2021-10-29 19:44:06 -0500
committerGrant Shangreaux <grant@unabridgedsoftware.com>2021-10-29 19:44:06 -0500
commit21e720bb89e494cc89e99169e13fff9bf0dbdc6f (patch)
tree29b1d4448ddf742129942b92ffcd294900bd0a22 /klangfarbrs
parent5da87bc8e3242da739a4b958563cf804a341bb8b (diff)
Add: pack an Array<Vector2<f32>> of samples and push_buffer
- add a method to set the sample rate of the sine wave
Diffstat (limited to 'klangfarbrs')
-rw-r--r--klangfarbrs/src/lib.rs19
1 files changed, 13 insertions, 6 deletions
diff --git a/klangfarbrs/src/lib.rs b/klangfarbrs/src/lib.rs
index 1489667..0628e34 100644
--- a/klangfarbrs/src/lib.rs
+++ b/klangfarbrs/src/lib.rs
@@ -5,12 +5,14 @@ use std::f32::consts::TAU;
#[derive(NativeClass)]
#[inherit(Node)]
-pub struct SineWave {}
+pub struct SineWave {
+ sample_rate: f32
+}
#[methods]
impl SineWave {
fn new(_owner: &Node) -> Self {
- SineWave {}
+ SineWave { sample_rate: 44100.0 }
}
#[export]
@@ -19,12 +21,17 @@ impl SineWave {
}
#[export]
- pub fn frames(&self, _owner: &Node, frequency: f32, sample_rate: f32, duration: i32) -> TypedArray<f32> {
+ fn set_sample_rate(&mut self, _owner: &Node, sample_rate: f32) {
+ self.sample_rate = sample_rate;
+ }
+
+ #[export]
+ pub fn frames(&self, _owner: &Node, frequency: f32, duration: i32) -> TypedArray<Vector2> {
let mut frames = TypedArray::new();
- let calculated_duration = sample_rate * duration as f32;
- for i in 0..calculated_duration as i32 {
- frames.push((TAU * frequency * i as f32/sample_rate).sin());
+ for i in 0..duration as i32 {
+ let sample = (TAU * frequency * i as f32/self.sample_rate).sin();
+ frames.push(Vector2::new(sample, sample));
}
return frames