home *** CD-ROM | disk | FTP | other *** search
- Set $2Pi 6.2831853071795864769
- Set $Conv Over $2Pi 360
-
- Define Spiral {
- Set %theta 0
- Set %r %dr
- For %i 0 %n {
- RLine Times %r Cos Times $Conv %theta
- Times %r Sin Times $Conv %theta
- Set %r Plus %r %dr
- Set %theta Plus %theta %dt
- IfLess 360 %theta
- Set %theta Minus %theta 360
- EndIf
- }
- }
-
- Path {
- Outlinecolour r0g0b0 Width 0
- Move 250 250
- Spiral { %dr .5 %dt 65 %n 500 }
- }
-