Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

virtual void Impala::Visualization::Plot::Plot::DisplayFunc (  )  [inline, virtual]

Reimplemented from OglGui::Window.

Definition at line 247 of file Plot.h.

References DrawAxes(), mDrawAxes, OglGui::OglWindow::mOglWnd, mPlottables, and TransformMatrices().

00248     {
00249         OGC oldOGC;
00250         OGCSave(&oldOGC);
00251         TransformMatrices(mOglWnd->width, mOglWnd->height);
00252 
00253         if(mDrawAxes)
00254             DrawAxes();
00255 
00256         for (int i=0 ; i<mPlottables.size() ; i++)
00257         {
00258             mPlottables[i]->Draw(this);
00259         }
00260 
00261 
00262         glMatrixMode(GL_PROJECTION);
00263         glPopMatrix();
00264         glMatrixMode(GL_MODELVIEW);
00265         glPopMatrix();
00266 
00267         OGCRestore(&oldOGC);
00268     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:25:42 2011 for ImpalaSrc by  doxygen 1.5.1