drawpoly
这个函数用于画无填充的多边形。
void drawpoly(
int numpoints,
const int *polypoints
);
参数
numpoints
多边形顶点的个数。
polypoints
每个点的坐标,数组元素个数为 numpoints * 2。
该函数会自动连接多边形首尾。
返回值
无
备注
该函数已废弃,仅在 graphics.h 中声明,推荐使用 polygon 替代该函数。
示例
以下代码片段绘制一个封闭的三角形:
int points[] = {50, 200, 200, 200, 200, 50};
drawpoly(3, points);