aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/components/triple_frequency.js6
-rw-r--r--lib/systems/frequency_adjuster.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/components/triple_frequency.js b/lib/components/triple_frequency.js
index 1f118b9..e98410e 100644
--- a/lib/components/triple_frequency.js
+++ b/lib/components/triple_frequency.js
@@ -5,8 +5,8 @@ export default class TripleFrequency extends Component {
super(config);
- this.a = this.a || Math.random();
- this.b = this.b || Math.random();
- this.c = this.c || Math.random();
+ this.a = this.a || 2 * Math.PI * Math.random();
+ this.b = this.b || 2 * Math.PI * Math.random();
+ this.c = this.c || 2 * Math.PI * Math.random();
}
};
diff --git a/lib/systems/frequency_adjuster.js b/lib/systems/frequency_adjuster.js
index a3582bb..b92bab6 100644
--- a/lib/systems/frequency_adjuster.js
+++ b/lib/systems/frequency_adjuster.js
@@ -39,7 +39,7 @@ export default class FrequencyAdjuster extends System {
id: `frequency-adjuster-${i}-slider-${key}`,
min: '0',
max: (2 * Math.PI).toString(),
- step: '0.05',
+ step: '0.01',
shiftStep: (Math.PI / 8).toString(),
label: internals.symbols[key],
className: `frequency`,