home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
proglang
/
ladybug1.arj
/
CIRCLE.BUG
< prev
next >
Wrap
Text File
|
1991-01-13
|
294b
|
15 lines
; circle.bug
to "circle :x :y :radius
local "amt
local "pi
make "pi 3.14159
make "amt :radius * :pi / 180
pu setxy :x :y setx xcor - :radius
setheading 0 pd
repeat 360 [fd :amt rt 1]
pu setxy :x :y
end
make "description [ Draw a circle - try circle 0 0 100 ]
print :description