User:Mirjam Dissel/turtlegami
< User:Mirjam Dissel
Revision as of 11:13, 14 June 2011 by Mirjam Dissel (talk | contribs) (Created page with "Category:Prototyping Category:Turtle Graphics Origami is an art, creating origami patterns is an art.<br> Turtlegami likes to think he's an artist.<br> Turtlegami likes ...")
Origami is an art, creating origami patterns is an art.
Turtlegami likes to think he's an artist.
Turtlegami likes to make impossible origami.
The base Turtlegami uses is a square of a simple origami base shape.
I wanted to create a full square of random different base shapes found in origami patterns. They always have a lot of symmetry and repetition.
Also, Turtlegami ate the images and the database gives me an error :(
In Inkscape:
goto(400,600)
pd()
def square():
for i in range(4):
fd(100)
lt(90)
styles['fill'] = rgb(200, 30, 0)
lt(22.5)
fd(108)
lt(67.5)
fd(59)
lt(90)
fd(59)
lt(67.5)
fd(108)
lt(22.5)
pu()
pd()
for i in range(4):
for i in range(8):
square()
square()
lt(90)
fd(100)
pu()