3D Cube Transformations in OpenGL: Scaling, Translation, and Rotation
Posted by aditya dani and classified in Computers
Written at on English with a size of 2.4 KB.
Introduction
This program demonstrates how to draw a 3D cube in OpenGL and perform various transformations on it, including scaling, translation, and rotation about one axis.
Code
#include <GL/glut.h>
bool movingRight = false;
float xLocation = 0.0f;
void display() {
glClearColor(1.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
glLoadIdentity();
glTranslatef(0.0f, 0.0f, -5.0f);
glTranslatef(xLocation, 0.0f, 0.0f);
glutWireCube(2.0f);
glutSwapBuffers();
if (movingRight)
xLocation -= 0.05f;
else
xLocation += 0.05f;
if (xLocation < -3.0f)
movingRight = false;
else if (xLocation > 3.0f)
movingRight = true;
}
void reshape(int width, int height) {
glViewport(0, 0, (GLsizei)width, (GLsizei)
... Continue reading "3D Cube Transformations in OpenGL: Scaling, Translation, and Rotation" »