Skip to content

Instantly share code, notes, and snippets.

View WhiteHotLoveTiger's full-sized avatar

Alex Keeling WhiteHotLoveTiger

View GitHub Profile
@WhiteHotLoveTiger
WhiteHotLoveTiger / mandelbrot.py
Created November 17, 2014 20:24
Creates a greyscale image of the Mandelbrot set.
# Modified from http://forthescience.org/blog/2010/07/12/the-mandelbrot-set-in-python/
from PIL import Image
max_iteration = 100
x_center = -1.0
y_center = 0.0
size = 3000
im = Image.new("RGB", (size,size))