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

void OglGui::ChangingToView::DoMovePhysics (  )  [inline, private]

Definition at line 259 of file ChangingToView.h.

References mMoveDuration, mMoveTimePassed, mReqX, mReqY, mReqZ, mStartX, mStartY, mStartZ, TimePassedFactor(), and UpdatePosition().

Referenced by OnDrawView().

00260     {
00261         float fact = TimePassedFactor(mMoveTimePassed,mMoveDuration);
00262         float x = mStartX + fact * (mReqX-mStartX);
00263         float y = mStartY + fact * (mReqY-mStartY);
00264         float z = mStartZ + fact * (mReqZ-mStartZ);
00265         UpdatePosition(x,y,z);
00266     }

Here is the call graph for this function:


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