Skip to content

Instantly share code, notes, and snippets.

@WashingtonGold
Created May 22, 2020 17:17
Show Gist options
  • Save WashingtonGold/0761bbe6b1b52021d05d39b09a00a5b5 to your computer and use it in GitHub Desktop.
Save WashingtonGold/0761bbe6b1b52021d05d39b09a00a5b5 to your computer and use it in GitHub Desktop.
def mandelbrot_set(width, height, iterations=256):
w,h = width, height
pixels = np.arange(w*h, dtype=np.uint16).reshape(h, w)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment