Pārlūkot izejas kodu

changed rounding function, results now more consistent with existing wav2sketch

dds
Matt Bradshaw pirms 6 gadiem
vecāks
revīzija
5232355994
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. +2
    -1
      extras/wav2sketch/wav2sketch.js

+ 2
- 1
extras/wav2sketch/wav2sketch.js Parādīt failu

@@ -75,7 +75,8 @@ function processFile(file, fileName) {
// http://2ality.com/2012/02/js-integers.html
function toInteger(x) {
x = Number(x);
return x < 0 ? Math.ceil(x) : Math.floor(x);
return Math.round(x);
//return x < 0 ? Math.ceil(x) : Math.floor(x);
}

function modulo(a, b) {

Notiek ielāde…
Atcelt
Saglabāt