把你mikumiku掉
1.创建图形窗口
void initWindow(const char *name , int left ,int top , int width ,int height );
例 : int Setup()
{
initWindow("hello world",100(DEFAULT),100(DEFAULE),200,200);
//DEFAULT的作用是系统自动选择位置
return 0;}
2.终端窗口
如果需要用scanf和printf,则需要首先 initconsole();
然后就可以在那个窗口上使用scanf和printf了
3.启动/结束绘图
void beginPaint();
void endPaint();
任何绘图函数的调用必须在这一堆函数调用之间
4.点
void putPixel(int x , int y , ACL_color color);
ACL_Color getPixel(int x,int y);
5.颜色
RGB(r,g,b)
6.线
7.面
8.画笔
9.刷子