User:Mirjam Dissel/turtlegami: Difference between revisions

From XPUB & Lens-Based wiki
(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 ...")
 
No edit summary
 
Line 47: Line 47:
pu()
pu()
</source>
</source>
[[File:Turtlegami.png|Turtlegami's first try]]

Latest revision as of 12:02, 21 June 2011


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()

Turtlegami's first try