home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303c
/
exc.arj
/
FGDOC
/
EXAMPLES
/
C
/
06-09.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
|
1993-09-30
|
365 b
|
24 lines
#include <fastgraf.h>
void main(void);
void main()
{
int old_mode;
old_mode = fg_getmode();
fg_setmode(fg_automode());
fg_setcolor(15);
fg_initw();
fg_setworld(-100.0,100.0,-100.0,100.0);
fg_movew(0.0,0.0);
fg_ellipsew(12.5,12.5);
fg_circlew(12.5);
fg_waitkey();
fg_setmode(old_mode);
fg_reset();
}