home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume4
/
quickplot
/
part2
/
testprogs.d
/
circle.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-11-30
|
213 b
|
18 lines
/* circle inscribed on plot space--no args */
#include <math.h>
main(argc,argv)
int argc;
char **argv;
{
int x,y,r;
x = 1000;
y = 1000;
r = 1000;
space(0,0,2000,2000);
circle(x,y,r);
erase();
exit(0);
}