No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
11 additions and
0 deletions
-
voicegardens/static/voicegardens.js
|
@ -419,3 +419,14 @@ function windowResized() { |
|
|
**/ |
|
|
**/ |
|
|
resizeCanvas(windowWidth, windowHeight); |
|
|
resizeCanvas(windowWidth, windowHeight); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
function getMaxPitch(spectrum) { |
|
|
|
|
|
/** |
|
|
|
|
|
* Get max pitch. |
|
|
|
|
|
*/ |
|
|
|
|
|
for (let x = spectrum.length - 1; x > 0; x--) { |
|
|
|
|
|
if (spectrum[x] != 0) { |
|
|
|
|
|
return x; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|