This commit is contained in:
JustAGenericUsername 2024-12-31 12:02:31 -05:00
parent 10adc99682
commit 41a43bed2a
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ elements.mandelbrot = {
}
}
*/
iteration = gridWeightedAverage(pixel.x, pixel.y)
iteration = preCalculatedGrid[pixel.x][pixel.y].iteration
if (iteration >= 99.5) {
pixel.color = "rgb(255, 255, 255)"
} else {