diff options
Diffstat (limited to 'src/synth/math.rs')
-rw-r--r-- | src/synth/math.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/synth/math.rs b/src/synth/math.rs index b016103..66a86a0 100644 --- a/src/synth/math.rs +++ b/src/synth/math.rs @@ -1,8 +1,8 @@ use super::*; pub struct Add { - terms: Vec<GenBox>, - buf: SampleBuffer, + pub terms: Vec<GenBox>, + pub buf: SampleBuffer, } impl Generator for Add { @@ -21,8 +21,8 @@ impl Generator for Add { } pub struct Mul { - factors: Vec<GenBox>, - buf: SampleBuffer, + pub factors: Vec<GenBox>, + pub buf: SampleBuffer, } impl Generator for Mul { |