📜  C语言中的drawpoly()函数

📅  最后修改于: 2021-05-26 01:52:05             🧑  作者: Mango

头文件graphics.h包含drawpoly()函数,该函数用于绘制多边形,例如三角形,矩形,五边形,六边形等。

句法 :

void drawpoly( int number, int *polypoints );

where,
number indicates (n + 1) number of points 
where n is the number of vertices in a
polygon. polypoints points to a sequence 
of (n*2) integers.

例子 :

输入:arr [] = {320,150,400,250,250,350,320,150};输出 : 输入:arr [] = {120,250,400,250,400,350,450,200,120,250};输出 :

说明: drawpoly()的声明包含两个参数。 number表示(n +1)个点的数量,其中n是多边形中的顶点数。第二个参数,即polypoints指向(n * 2)个整数序列。每对整数给出多边形上一个点的x和y坐标。我们指定(n + 1)个点是因为第一个点的坐标应等于第(n + 1)个以绘制完整的图形。

示例1:使用drawpoly绘制三角形。
int arr [] = {320,150,400,250,250,350,320,150};

数组arr包含三角形的坐标,分别是(320,150),(400,250)和(250,350)。请注意,数组中的最后一个点(320,150)与第一个相同。

以下是drawpoly()函数。

// C Implementation for drawpoly()
#include 
  
// driver code
int main()
{
    // gm is Graphics mode which is
    // a computer display mode that
    // generates image using pixels.
    // DETECT is a macro defined in
    // "graphics.h" header file
    int gd = DETECT, gm;
  
    // coordinates of polygon
    int arr[] = {320, 150, 400, 250, 
                 250, 350, 320, 150};
  
    // initgraph initializes the
    // graphics system by loading a
    // graphics driver from disk
    initgraph(&gd, &gm, "");
  
    // drawpoly function
    drawpoly(4, arr);
  
    getch();
  
    // closegraph function closes the
    // graphics mode and deallocates
    // all memory allocated by
    // graphics system .
    closegraph();
  
    return 0;
}

输出 :

想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。