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

static void OglGui::OglDemo::MyOnDrawView3D ( OGLVIEW3D *  view  )  [inline, static]

Definition at line 652 of file OglDemo.h.

Referenced by SetOnDrawViewGraphics().

00653     {
00654         OGC myOGC;
00655         int bInfo[3];
00656 
00657         OGCSave(&myOGC);
00658         glPushMatrix();
00659         oglSys.StartBlend(bInfo);
00660 
00661         SetFillColors(oglRED, oglGREEN, oglBLUE, oglBLACK, 0x80ffffff);
00662         // Oval in upper corner of view, origin is in center
00663         view3DSys.View3DNormTransform(view);
00664         FillEllipse3D(0.5f, 0.5f, 0.01f, 0.25f, 0.25f, 0.35f, 0.15f);
00665 
00666         SetFillColors(oglBLACK, oglBLACK, oglBLACK, oglRED, oglTrWHITE);
00667         // Oval in lower left corner of image, origin is lower left
00668         view3DSys.View3DImageNormTransform(view);
00669         FillOval3D(0.0f, 0.0f, 0.01f, 0.25f, 0.25f);
00670 
00671         oglSys.EndBlend(bInfo);
00672         glPopMatrix();
00673         OGCRestore(&myOGC);
00674     }


Generated on Thu Jan 13 09:26:39 2011 for ImpalaSrc by  doxygen 1.5.1