示例#1
0
	//  [7/30/2008 zhangxiang]
	void sgNode::yaw(const Radian &aAngle, int aRelativeTo /* = TS_LOCAL */){
		rotationY(aAngle, aRelativeTo);
	}
示例#2
0
文件: Matrix.cpp 项目: Dehax/DWin3D
Matrix Matrix::rotation(const long double &angleX, const long double &angleY, const long double &angleZ)
{
    return rotationX(angleX) * rotationY(angleY) * rotationZ(angleZ);
}