Merge pull request #98 from lllllllllwith10ls/main

Remove console.log in chem.js
This commit is contained in:
slweeb 2023-06-28 14:49:56 -04:00 committed by GitHub
commit 954feddf7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -1038,7 +1038,6 @@ function doStaining(pixel) {
avg[j] = Math.floor((rgb[j]*(1-Math.abs(stain))) + (newColor[j]*Math.abs(stain)));
}
}
console.log(avg);
// set newPixel color to avg
newPixel.color = "rgb("+avg.join(",")+")";
}