Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Transformations Using OpenGL

0.00/5 (No votes)
1 May 2002 6  
This article explains the viewing and modeling transformations.

Sample Image - Trans.jpg

Introduction

This article explains the two transformations - Viewing and Modeling.

The viewing transformation

The viewing transformation is analogous to positioning and aiming a camera. The viewing transformation is specified with gluLookAt(). The arguments for this command indicate where the camera (or eye position) is placed, where it is aimed, and which way is up. The arguments used here place the camera at (0, 0, 5), aim the camera lens towards (0, 0, 0), and specify the up-vector as (0, 1, 0). The up-vector defines a unique orientation for the camera.

In this code example, before the viewing transformation can be specified, the current matrix is set to the identity matrix with glLoadIdentity(). This step is necessary since most of the transformation commands multiply the current matrix by the specified matrix and then set the result to be the current matrix. If you don't clear the current matrix by loading it with the identity matrix, you continue to combine previous transformation matrices with the new one you supply. In some cases, you do want to perform such combinations, but you also need to clear the matrix sometimes.

The modeling transformation

You use the modeling transformation to position and orient the model. For example, you can rotate, translate, or scale the model - or perform some combination of these operations. glScalef() is the modeling transformation that is used. The arguments for this command specify how scaling should occur along the three axes. If all the arguments are 1.0, this command has no effect. In the demo application the polygon is drawn twice as large in the y direction. Thus, if one corner of the polygon had originally been at (3.0, 3.0, 3.0), that corner would wind up being drawn at (3.0, 6.0, 3.0).

My previous article on OpenGL - Getting started with OpenGL, showed the basic framework for drawing in a window.

The OnPaint() for the demonstration project of this article looks like this:

void OnPaint()
{
  //do this if u want to clear the area before showing an image
  this->Invalidate(TRUE);

  // Draw the scene.

  // Get a DC, then make the RC current and
  // associate with this DC
  hdc = ::BeginPaint(hwnd,&ps);

  wglMakeCurrent( hdc, hRC );

  //********Drawing Start****************

  // Define the modelview transformation.

  glMatrixMode( GL_MODELVIEW );
  glLoadIdentity();

  // move the viewpoint out to where we can see everything
  glTranslatef( 0.0f, 0.0f, -5.0f );

  //Specify the polygon vertices in an array
  static GLfloat vertices[] =  {
                 1.0,-0.5,0.5,
                 1.0,0.5,-1.0,
                 0.5,1.0,-1.0,
                 0.5,-1.0,1.0
                           };
  glEnableClientState(GL_VERTEX_ARRAY);//Enable use of array of vertices
  glColor3f(0.0,0.0,0.0);//black color
  glVertexPointer(3,GL_FLOAT,0,vertices);

  glPolygonMode(GL_FRONT,GL_LINE);//Front face as a lined plolygon
  glPolygonMode(GL_BACK,GL_FILL);//back face as a filled polygon
  glLoadIdentity ();/* clear the matrix */

    /* viewing transformation  */
     //camera position , where its pointed ,up direction    
     gluLookAt (vx1,vy1,vz1,vx2,vy2,vz2,vx3,vy3,vz3);

     /*modeling transformation Front Face*/
     glScalef((float)mx,(float)my,(float)mz);
     glBegin(GL_POLYGON);
     for(int i=0;i<4;i++)
       glArrayElement (i);//Plotting using array
     glEnd();

     glDisableClientState(GL_VERTEX_ARRAY);

     glFlush();

//********END**************************

    // we're done with the RC, so
    // deselect it
    // (note: This technique is not recommended!)
    wglMakeCurrent( NULL, NULL );

   ::EndPaint(hwnd,&ps);

}

About the demo application

The demo application allows you to specify the co-ordinates for the transformations and accordingly the image can be viewed. Just change the x co-ordinate to -1 in the modeling transformation dialog box to view the back face of the polygon.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here