文件名称:OPENGL初学者范例代码3
文件大小:177KB
文件格式:TXT
更新时间:2011-12-08 18:22:11
OPENGL初学者范例代码3
void display (void) { glClear(GL_COLOR_BUFFER_BIT); glColor3f (1.0, 1.0, 1.0); glLoadIdentity (); /* clear the matrix */ glTranslatef (0.0, 0.0, -5.0); /* viewing transformation */ glScalef (1.0, 2.0, 1.0); /* modeling transformation */ auxWireCube(1.0); /* draw the cube */ glFlush(); }