home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 3: The Continuation
/
17-Bit_The_Continuation_Disc.iso
/
files
/
arug23.dms
/
arug23.adf
/
Calculations
/
DrawCircle
(
.txt
)
< prev
next >
Wrap
AmigaBASIC Source Code
|
1993-12-02
|
389b
|
21 lines
' DrawCircle
' Test program to draw circles or ellipses
' A C Hewat 23rd March 1989
' Refere to page 8-32 of Basic Manual
Loop:
CLS
'INPUT "start"; begin
'INPUT "end"; finish
'INPUT "aspect"; asp
radius = 55
aspect = 0.1
WHILE aspect < 20
CIRCLE (160,60),radius,,,,aspect
aspect = aspect*1.4
WEND