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/math.rs | |
parent | 85925d69e08455bd91d32a27cd3690c9cb634a6b (diff) |
it builds and does a thing
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 { |