A Logo spiral

Nikolaus Gradwohl2010-06-15T19:58:00+00:00

For todays 30daysOfCreativity-Project I wanted to use a tool, that I haven't used so far. So I went back to the first programming language I have learned 20 years ago - Logo.

I used the kde KTurtle programm to write some logo code, which looks more like a modern IDE that the logo interpreter I remember :-)

reset
clear
$l = 1
repeat 64 {
  pu
  fw $l*2
    pd
  repeat 4 {
        fw $l
        tr 90
    }
  pu
  bw $l*2
    $l = $l + 1
    tr 360/32
}

logo spiral

Tweet This! submit to reddit Digg! Tags: | no comments | no trackbacks

See also:

Day 30 of 30DaysOfCreativity - RadioPI interface module
Day 29 of 30daysOfCreativity - Shapes
Day 28 of 30daysofcreativity - testing the radiopi software
Day 27 of 30daysofcreativity - testing the amp module
Day 26 of 30DaysOfCreativity - prototyping the controls

Trackbacks

Comments

Leave a response

Leave a comment