DRWCIRCLE

"xcen ter

DOS SVGACC圖形開發庫函式
原型 extern void far drwcircle (PixelMode mode, int colr, int xcenter, int ycenter, int radius)
輸入 mode - 寫點模式
colr - 顏色索引值
xcenter, ycenter - 圓的圓心位置
radius - 圓的半徑
輸出 無返回值
用法 DRWCIRCLE按照指定的圓心(xcenter, ycenter)和半徑(radius)用指定的顏色和寫模式畫一個圓。所有的xcenter,ycenter和radius都是有效的。圓的任何超出當前視口的矩形部份將不會繪製。
例子
/*
* Places a circle at the center of the screen
*/
#include <stdlib.h>
#include <conio.h>
#include "svgacc.h"
void main(void)
{
int vmode;
vmode = videomodeget();
if ( !whichvga() )
exit(1);
if ( whichmem() < 512)
exit(1);
res640();
drwcircle (1,10,320,240,200);
getch();
videomodeset(vmode);
exit(0);
}

相關詞條

相關搜尋

熱門詞條

聯絡我們