词条 | DRWFILLBOX |
释义 | DOS SVGACC图形开发库函数 原型 extern void far drwfillbox (PixelMode mode, int colr, int x1,int y1, int x2, int y2) 输入 mode - 写点模式 colr - 颜色索引值 x1, y1 - 左上角 x2, y2 - 右下角 输出 无返回值 用法 DRWBOX以(x1, y1)和(x2, y2)为对角顶点用指定的颜色和写模式画一个填充的矩形。不必精确给出四个顶点的坐标,而只需给出矩形相对的两顶点坐标。矩形任何超出当前视口的部份将不会绘制。 例子 /* * Places a filled box in 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); if ( !res640() ) exit(1); drwfillbox (1,10,270,190,370,290); getch(); videomodeset(vmode); exit(0); } |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。