请输入您要查询的百科知识:

 

词条 DRWBOX
释义

DOS SVGACC图形开发库函数

原型 extern void far drwbox (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 box around the whole 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();

drwbox (1,10,0,0,639,479);

getch();

videomodeset(vmode);

exit(0);

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/15 13:05:48