Definition at line 277 of file ChangingToView.h. References mReqRotX, mReqRotY, mReqRotZ, mRotateDuration, mRotateTimePassed, mStartRotX, mStartRotY, mStartRotZ, TimePassedFactor(), and UpdateRotations(). Referenced by OnDrawView(). 00278 { 00279 float fact = TimePassedFactor(mRotateTimePassed,mRotateDuration); 00280 float rX = mStartRotX + fact * (mReqRotX-mStartRotX); 00281 float rY = mStartRotY + fact * (mReqRotY-mStartRotY); 00282 float rZ = mStartRotZ + fact * (mReqRotZ-mStartRotZ); 00283 UpdateRotations(rX,rY,rZ); 00284 }
Here is the call graph for this function: ![]()
|