Total members 11889 |It is currently Thu Mar 28, 2024 4:41 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Drawing a Tetrahedron using openGL/GLU, also we are using rotation and animation . glutSolidTetrahedron function is used.
Code:
#include <GL\glut.h>

GLfloat xRotated, yRotated, zRotated;
// Tetrahedron
void displayTetrahedron(void)
{

    glMatrixMode(GL_MODELVIEW);
    // clear the drawing buffer.
    glClear(GL_COLOR_BUFFER_BIT);
    // clear the identity matrix.
    glLoadIdentity();
    // traslate the draw by z = -4.0
    // Note this when you decrease z like -8.0 the drawing will looks far , or smaller.
    glTranslatef(0.0,0.0,-4.5);
    // Red color used to draw.
    glColor3f(0.8, 0.2, 0.1); 
    
// changing in transformation matrix.
    // rotation about X axis
    glRotatef(xRotated,1.0,0.0,0.0);
    // rotation about Y axis
    glRotatef(yRotated,0.0,1.0,0.0);
    // rotation about Z axis
    glRotatef(zRotated,0.0,0.0,1.0);
    // scaling transfomation 
    glScalef(1.0,1.0,1.0);
    // built-in (glut library) function , draw you a Tetrahedron.
    glutSolidTetrahedron();
    // Flush buffers to screen
     
    glFlush
();        
    
// sawp buffers called because we are using double buffering 
   // glutSwapBuffers();
}

void reshapeTetrahedron(int x, int y)
{
    if (== 0 || x == 0) return;  //Nothing is visible then, so return
    //Set a new projection matrix
    glMatrixMode(GL_PROJECTION);  
    glLoadIdentity
();
    //Angle of view:40 degrees
    //Near clipping plane distance: 0.5
    //Far clipping plane distance: 20.0
     
    gluPerspective
(40.0,(GLdouble)x/(GLdouble)y,0.5,20.0);
 
    glViewport
(0,0,x,y);  //Use the whole window for rendering
}

void idleTetrahedron(void)
{
 
     yRotated 
+= 0.01;
     
    displayTetrahedron
();
}


int main (int argc, char **argv)
{
    //Initialize GLUT
    glutInit(&argc, argv);
    //double buffering used to avoid flickering problem in animation
     glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);  
    
// window size
    glutInitWindowSize(400,350);
    // create the window 
    glutCreateWindow("Tetrahedron Rotating Animation");
    glPolygonMode(GL_FRONT_AND_BACK,GL_LINE);
    xRotated = yRotated = zRotated = 30.0;
     xRotated=33;
     yRotated=40;
    glClearColor(0.0,0.0,0.0,0.0);
    //Assign  the function used in events
    glutDisplayFunc(displayTetrahedron);
   glutReshapeFunc(reshapeTetrahedron);
    glutIdleFunc(idleTetrahedron);
    //Let start glut loop
    glutMainLoop();
    return 0;
}
 





Attachments:
Tetrahedron.png
Tetrahedron.png [ 4.34 KiB | Viewed 11737 times ]

_________________
M. S. Rakha, Ph.D.
Queen's University
Canada
Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Drawing and rotating Tetrahedron with animation
 drawing a rotating sphere     -  
 Simple animation     -  
 cloud animation     -  
 animation using Photoshop     -  
 Sprite Animation     -  
 create Animation in java     -  
 Stop animation in JQuery     -  
 How to use Javascript animation to change the size of a div?     -  
 Draw Tank with animation and using threads too     -  
 drawing sonic     -  



cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com