home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kyūkyoku!! X68000 Emulator
/
X68000Book.dat
/
mac
/
OLS
/
X68000
/
Ko-Window
/
kow142s.lzh
/
wsrv
/
wlib
/
DrawSetGraCircle.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-09
|
459b
|
25 lines
/*
* ò`ëµâpâëâüü[â^âZâbâg
*
* 1992 by COR.
*/
#define DRAW
#include "draw.h"
void DrawSetGraphicCircle( buf, x, y, rx, ry, code, option )
DrawBuf *buf ;
int x, y;
int rx, ry;
int code;
SheetOption option;
{
buf->type = DrawGraphicCircle ;
buf->option.circle.x = x;
buf->option.circle.y = y;
buf->option.circle.rx = rx;
buf->option.circle.ry = ry;
buf->option.circle.code = code;
buf->option.circle.option = option;
}