I see from the source that you're using wxwidgets so it should be easy to port it to OS X and linux as well.
PythonTurtle screenshot with a dragon curve http://img35.imageshack.us/i/screenshotpythonturtled.png/
>>> def dragon(level=4, size=200, direction=45): ... """From http://rosettacode.org/wiki/Dragon_curve ... """ ... if level == 0: ... go(size) ... return ... turn(direction) ... dragon(level-1, size/1.41421356237, 45) ... turn(-direction*2) ... dragon(level-1, size/1.41421356237, -45) ... turn(direction) ... >>> dragon(10)
I see from the source that you're using wxwidgets so it should be easy to port it to OS X and linux as well.