summaryrefslogtreecommitdiff
path: root/src/synth/sine.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/sine.rs')
-rw-r--r--src/synth/sine.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/synth/sine.rs b/src/synth/sine.rs
index 3ee4857..212ab21 100644
--- a/src/synth/sine.rs
+++ b/src/synth/sine.rs
@@ -4,9 +4,9 @@ use super::*;
const TAU: f32 = 2f32 * PI;
pub struct Sine {
- freq: GenBox,
- phase: f32,
- buf: SampleBuffer,
+ pub freq: GenBox,
+ pub phase: f32,
+ pub buf: SampleBuffer,
}
impl Generator for Sine {