Wednesday, March 16, 2011

A simple spiral

This script draws a simple spiral. It came from a simple change to the polygon spiral script.

reset
penup
turnleft 180
forward 150
turnright 90
pendown

for $x = 2 to 80 {
 repeat $x {
  forward 10
  turnright 105 / $x
}

1 comment:

  1. I did a Golden Ratio spiral, it hurt my computer...

    ReplyDelete