Andy Harman

Results 10 comments of Andy Harman

Hi @mscottnelson To solve this specific issue, should I submit a PR that changes the following?: * Update main.js so that the setter for Context does a type-check. * Update...

The problem with subtracting 2 bandlimited sawtooth waves is that it makes modulation difficult. * I did request that a "phase" parameter should be added to the OscillatorNode, but there...

It will be something like +-3.5 octaves (like we did on filter). The old analogue synth used CV (control voltage) a LOT. so it was common to see stuff like...

Answer is in 106 service notes. +-400 cents.

The code for actual pitch modulation looks ok - looks like current code is -100 to +100 cents (I am review code on small tablet so may be wrong). Are...

Makes me wonder if the other modulation sliders (for the VCF) are non-linear. The VCF is really hard for me to accurately measure. We will need to do by-ear comparisons...

I don't have any experience with arpeggiators, but agree it would be cool. The Juno 106 switches the arpxxx for something else. The Ju06 provides a simple sequencer. They're nice...

I have experimented with converting static denominator divisions into multiplications in the past for a C# rating engine. It causes rounding errors that would not be a problem for us,...

Nice work on last night's commit. Can you look at allocations (so that we can reduce the load from garbage collections): synth.worklet.js * this.bufferL and this.bufferR do not appear to...

Something like this within junox.js ``` this.tick() let monoOut = 0 let isVoiceFinished = false for (let j = 0; j < this.voices.length; j++) { const voice = this.voices[j] monoOut...