Aufgabe 3 bearbeitet

This commit is contained in:
romanschenk37 2022-03-06 22:15:08 +01:00
parent 6bd7f43163
commit abcf639897
1 changed files with 0 additions and 1 deletions

View File

@ -138,7 +138,6 @@ 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;
} }