Update chem.js

This commit is contained in:
lllllllllwith10ls 2023-06-28 13:46:25 -05:00
parent 11ead5ac9e
commit 1cb1eecba2
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(",")+")";
}