Microsoft DirectX 8.1 (C++) |
Determines the product of the computed rotation matrix (composed of a given yaw, pitch, and roll) and the current matrix.
HRESULT RotateYawPitchRollLocal( FLOAT Yaw, FLOAT Pitch, FLOAT Roll );
If the method succeeds, the return value is D3D_OK.
This method left-multiplies the current matrix with the computed rotation matrix. All angles are counterclockwise and rotation is about the local origin of the object.
D3DXMATRIX tmp; D3DXMatrixRotationYawPitchRoll( &tmp, yaw, pitch, roll ); m_stack[m_currentPos] = tmp * m_stack[m_currentPos];
Header: Declared in D3dx8math.h.
Import Library: Use D3dx8.lib.
ID3DXMatrixStack::RotateAxis, ID3DXMatrixStack::RotateAxisLocal, ID3DXMatrixStack::RotateYawPitchRoll