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

virtual void OglGui::ViewerPoint::AnimatePoint (  )  [inline, virtual]

Definition at line 46 of file ViewerPoint.h.

References mDeltaX, mDeltaY, OglGui::View::mView2D, mX, and mY.

Referenced by OglGui::ViewerPointCloud::DrawAsPoints(), and OglGui::ViewerPointCloud::HandleViewDisplay().

00047     {
00048         if ((mX+=mDeltaX) > 200 || mX < -200)
00049             mDeltaX = -mDeltaX;
00050         if ((mY+=mDeltaY) > 200 || mY < -200)
00051             mDeltaY = -mDeltaY;
00052         mView2D->rotZ += 2;
00053     }


Generated on Thu Jan 13 09:27:15 2011 for ImpalaSrc by  doxygen 1.5.1