Skip to content

Instantly share code, notes, and snippets.

@guyhillyer
guyhillyer / Mandelista.py
Created December 8, 2012 16:06
Mandelista, a Mandelbrot set explorer for Pythonista
# Mandelista: a Mandelbrot set explorer for Pythonista.
# Dragging selects a region which is highlighted;
# tapping inside the highlighted region zooms to the region;
# tapping outside the region cancels the selection.
# By Guy K Hillyer, a Python neophyte.
from scene import *
# The class Region represents the area of the graph that is being
# examined. It has two coordinate systems: the range of real numbers
@guyhillyer
guyhillyer / bug.py
Created December 2, 2012 21:19
bug
from scene import *
from PIL import Image
class MyScene (Scene):
def setup(self):
self.x = 0
self.sz = int(self.bounds.w)
self.img = Image.new('RGBA', (self.sz, self.sz))