diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-18 23:53:16 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-18 23:53:16 -0400 |
commit | 26e95364ad9073dd7cb571454cd52ae66f320a73 (patch) | |
tree | 96b94123569588515d79428fe6c940db75dc2813 /src/synth/sine.rs | |
parent | 85925d69e08455bd91d32a27cd3690c9cb634a6b (diff) |
it builds and does a thing
Diffstat (limited to 'src/synth/sine.rs')
-rw-r--r-- | src/synth/sine.rs | 6 |
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 { |