1 Commits
Author SHA1 Message Date
romanschenk37andGitHub e87cc8212b Merge pull request #1 from ZHAW-IT-PROG2-2022/master
Feedback
2022-03-06 22:06:37 +01:00
@@ -138,6 +138,7 @@ public class MandelbrotCallableProcessor extends MandelbrotProcessor {
// select color based on count of iterations // select color based on count of iterations
imageRow.pixels[col] = (count != maxIterations) ? imageRow.pixels[col] = (count != maxIterations) ?
palette[count % palette.length] : Color.BLACK; palette[count % palette.length] : Color.BLACK;
} }
return imageRow; return imageRow;
} }