资源简介
需要opengl的glut库,请提前配置好OpenGL的环境,其它之外并没有特殊的要求
代码片段和文件信息
#include
#include
#include
#include
/////////////myInit////////////////////
void myInit()
{
glClearColor(1.0 1.0 1.0 0.0);
glColor4f(1.0f 0.0f 0.0f0.8f);
glPointSize(8.0);
glMatrixMode(GL_MODELVIEW);//选择模式为模型视图矩阵
glLoadIdentity();//变换成为单位矩阵
gluOrtho2D(0.0 640 0.0 480);
}
///////////////////myDisplay//////////////
void myDisplay()
{
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_POINTS);
glVertex2i(1 1);
glEnd();
glFlush();
}
/////////////myMouse///////////////////////
void myMouse(int button int state int
评论
共有 条评论