draft a simpler version of the bell eq

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-12-28 18:08:12 +02:00
parent 9b87589f7b
commit 8d4a7a5045
5 changed files with 55 additions and 22 deletions

View File

@ -12,27 +12,28 @@ const (
opDelay = 8
opDistort = 9
opEnvelope = 10
opFilter = 11
opGain = 12
opHold = 13
opIn = 14
opInvgain = 15
opLoadnote = 16
opLoadval = 17
opMul = 18
opMulp = 19
opNoise = 20
opOscillator = 21
opOut = 22
opOutaux = 23
opPan = 24
opPop = 25
opPush = 26
opReceive = 27
opSend = 28
opSpeed = 29
opSync = 30
opXch = 31
opEq = 11
opFilter = 12
opGain = 13
opHold = 14
opIn = 15
opInvgain = 16
opLoadnote = 17
opLoadval = 18
opMul = 19
opMulp = 20
opNoise = 21
opOscillator = 22
opOut = 23
opOutaux = 24
opPan = 25
opPop = 26
opPush = 27
opReceive = 28
opSend = 29
opSpeed = 30
opSync = 31
opXch = 32
)
var transformCounts = [...]int{0, 0, 1, 0, 5, 1, 1, 4, 1, 5, 2, 1, 1, 0, 1, 0, 1, 0, 0, 2, 6, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0}
var transformCounts = [...]int{0, 0, 1, 0, 5, 1, 1, 4, 1, 5, 3, 2, 1, 1, 0, 1, 0, 1, 0, 0, 2, 6, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0}