#include<easyx.h>中函数有什么
时间: 2023-11-21 17:06:23 浏览: 83
怎么vs2022上安装graphics.h EasyX
在 EasyX 库中,常见的函数有:
1. 初始化函数:initgraph、initwindow、initgraph3D;
2. 绘图函数:line、rectangle、circle、ellipse、arc、pieslice、polygon、fillrectangle、fillcircle、fillellipse、floodfill、putpixel、getpixel、moveto、lineto、polyline、setcolor、setfillcolor、setbkcolor、setbkmode、setlinestyle、settextcolor、settextstyle;
3. 输入输出函数:outtext、outtextxy、outtextrect、inputbox;
4. 鼠标函数:ismouseclick、getmouseclick、getmousex、getmousey、clearmouseclick;
5. 键盘函数:kbhit、getch、getche;
6. 时间函数:delay、Sleep;
7. 图像函数:loadimage、getimage、putimage、getwidth、getheight、free;
8. 其他函数:randomize、random、GetTickCount、MessageBox、PlaySound、ShellExecute。
以上仅列举了常见的函数,实际上 EasyX 库中还有很多其他的函数,可以根据具体需求进行查阅。
阅读全文