在 C++ 图形中绘制一条线
在本教程中,我们将讨论在 C++ 图形中绘制一条线的程序。
为了实现不同的形状和大小、动画,C++ 中使用了 graphics.h 库。
示例
#include <graphics.h> int main(){ int gd = DETECT, gm; initgraph(&gd, &gm, ""); line(150, 150, 450, 150); line(150, 200, 450, 200); line(150, 250, 450, 250); getch(); closegraph(); return 0; }
输出
广告