Está en la página 1de 1

Curso/ Computación Gráfica y Facultad Ingeniería Asunto Aplicación

Clase Visual
Docente Ing. Enrique Arturo Morales Carrera Ingeniería Sistemas Fila “A”
Unidad 1 Tema APLICACIÓN Tipo Laboratorio

APLICACIÓN CON GLUT – movimiento con mouse

Indicaciones:
1. Sea cuidadoso con su ortografía y redacción, el cual formará parte de su calificación. Escriba con letra clara y legible.
2. Lea bien la pregunta o enunciado antes de responder. Administre su tiempo eficazmente.
3. Sea breve y objetivo en su respuesta. No se califica por extensión, sino por calidad de respuesta.
4. No puede utilizar apuntes, notas de clase, diapositivas o libros, laptop, celulares u otros dispositivos, a menos que el docente del curso se lo permita.

Movimiento con el mouse

#include <glut.h>
float alpha, beta;
int x0, y0;
void display(void) {
glClear(GL_COLOR_BUFFER_BIT);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(20.0f, 1.0f, 1.0f, 10.0f);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
gluLookAt(0.0f, 0.0f, 5.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f);
glRotatef(alpha, 1.0f, 0.0f, 0.0f);
glRotatef(beta, 0.0f, 1.0f, 0.0f);
glutWireTeapot(0.5);
glFlush();

glutSwapBuffers();
}
void onMouse(int button, int state, int x, int y) {
if ( (button == GLUT_LEFT_BUTTON) & (state == GLUT_DOWN) ) {
x0 = x; y0 = y;
}
}
void onMotion(int x, int y) {
alpha = (alpha + (y - y0));
beta = (beta + (x - x0));
x0 = x; y0 = y;
glutPostRedisplay();
}
void main(void) {
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
glutInitWindowSize(400, 400);
glutInitWindowPosition(100, 100);
glutCreateWindow("Ejemplo de menus");
glutDisplayFunc(display);
glutMouseFunc(onMouse);
glutMotionFunc(onMotion);
glutMainLoop();
}

También podría gustarte