Skip to content

Commit

Permalink
Made consistent in assignment of 255 color.
Browse files Browse the repository at this point in the history
  • Loading branch information
applio committed Apr 1, 2013
1 parent 5816572 commit 392ae82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mandel/mandel_cu.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def mandel(tid, min_x, max_x, min_y, max_y, image, iters):
color = i
break

image[y, x] = i
image[y, x] = color

def create_fractal(cu, min_x, max_x, min_y, max_y, image, iters):
height, width = image.shape
Expand Down

0 comments on commit 392ae82

Please sign in to comment.