bnmhtgfyhg

TITLE:Write C++/Java program to draw 3-D cube and perform following transformations on it using
OpenGL. a) Scaling b) Translation c) Rotation about one axis
--Scaling--
#include // Include the GLUT header file
void display (void) {
glClearColor(0.0f, 0.0f, 1.0f, 1.0f); // Clear the background of our window to blue
glClear(GL_COLOR_BUFFER_BIT); //Clear the colour buffer (more buffers later on)
glLoadIdentity(); // Load the Identity Matrix to reset our drawing locations
glTranslatef(0.3f, 0.3f,-6.0f)...

See it on Wikiteka »

Untitled 1

TITLE:Write C++/Java program to draw 3-D cube and perform following transformations on it using
OpenGL. a) Scaling b) Translation c) Rotation about one axis
--Translation about x-axis--
#include // Include the GLUT header file
bool movingRight = false; // Whether or not we are moving left or right
float xLocation = 0.0f; // Keep track of our position on the x axis.
void display (void) {
glClearColor(1.0f, 0.0f, 0.0f, 1.0f); // Clear the background of our window to red
glClear(GL_COLOR_BUFFER_BIT);...

See it on Wikiteka »