旋转的“金字塔”

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34195441/article/details/79121906

点击鼠标左键加速,右键减速

#include <GL/glut.h>
#include <stdlib.h>
static float  rtri=0.0f,acc=0.1f;//金字塔旋转角度
void init() 
{
       glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
       glShadeModel(GL_SMOOTH);//设为smooth处理方式,注意看区别
       glEnable(GL_DEPTH_TEST);//激活深度测试
}
void display()
{
       glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);    //清除颜色缓存和深度缓存
       glLoadIdentity();
       glTranslatef(-1.5f,0.0f,-6.0f);//平移
       glRotatef((GLfloat)rtri,0.0f,1.0f,0.0f);//旋转
       glBegin(GL_TRIANGLES);
       glColor3f(1.0f,0.0f,0.0f);
       glVertex3f( 0.0f, 1.0f, 0.0f);
       glColor3f(0.0f,1.0f,0.0f);
       glVertex3f(-1.0f,-1.0f, 1.0f);
       glColor3f(0.0f,0.0f,1.0f);
       glVertex3f( 1.0f,-1.0f, 1.0f);

       glColor3f(1.0f,0.0f,0.0f);
       glVertex3f( 0.0f, 1.0f, 0.0f);
       glColor3f(0.0f,0.0f,1.0f);
       glVertex3f( 1.0f,-1.0f, 1.0f);
       glColor3f(0.0f,1.0f,0.0f);
       glVertex3f( 1.0f,-1.0f, -1.0f);

       glColor3f(1.0f,0.0f,0.0f);
       glVertex3f( 0.0f, 1.0f, 0.0f);
       glColor3f(0.0f,1.0f,0.0f);
       glVertex3f( 1.0f,-1.0f, -1.0f);
       glColor3f(0.0f,0.0f,1.0f);
       glVertex3f(-1.0f,-1.0f, -1.0f);

       glColor3f(1.0f,0.0f,0.0f);
       glVertex3f( 0.0f, 1.0f, 0.0f);
       glColor3f(0.0f,0.0f,1.0f);
       glVertex3f(-1.0f,-1.0f,-1.0f);
       glColor3f(0.0f,1.0f,0.0f);
       glVertex3f(-1.0f,-1.0f, 1.0f);
       glEnd();
       glutSwapBuffers();//交换双缓存
}
 
void reshape (int width, int height)
{
       glViewport(0, 0, width, height); 
       glMatrixMode(GL_PROJECTION);
       glLoadIdentity();
       gluPerspective(45.0f, (GLfloat)width/(GLfloat)height, 0.1f, 100.0f);
       glMatrixMode(GL_MODELVIEW);
       glLoadIdentity();
}
 
void idle()
{
	rtri=rtri+acc;
	glutPostRedisplay();
}
void mouse(int button, int state, int x, int y)
{
	if (button == GLUT_LEFT_BUTTON)//如果鼠标左键被按下或者被放开
	{
		if (state == GLUT_DOWN)//如果某个鼠标键被按下
		{
			acc+=0.1f;
		}
		glutPostRedisplay(); 
	}
	else if (button == GLUT_RIGHT_BUTTON && state == GLUT_DOWN)
	{					
			acc-=0.1f;
		glutPostRedisplay(); 
	}
	else
	{
		if(state==GLUT_DOWN)
			exit(0);
		glutPostRedisplay();
	}
}
int main(int argc, char** argv)
{
       glutInit(&argc, argv);
       glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);//使用双缓存模式和深度缓存
       glutInitWindowSize(640, 480); 
       glutInitWindowPosition(100, 100);
       glutCreateWindow("Transform2");
       init();
       glutDisplayFunc(display);
	   glutIdleFunc(idle);//设置空闲时调用的函数
       glutReshapeFunc(reshape);
	   glutMouseFunc(mouse);
       glutMainLoop();
       return 0;
}

运行截图:


猜你喜欢

转载自blog.csdn.net/qq_34195441/article/details/79121906