コード例 #1
0
ファイル: cVec4.cpp プロジェクト: pilkch/library
 void cVec4::RotateZ(double angle)
 {
   (*this)=GetRotatedZ(angle);
 }
コード例 #2
0
ファイル: VECTOR4D.cpp プロジェクト: twslankard/BSPrenderer
void VECTOR4D::RotateZ(double angle)
{
	(*this)=GetRotatedZ(angle);
}
コード例 #3
0
ファイル: PxVector.cpp プロジェクト: priyananda/projects
void PxVector::RotateZ(double angle)
{
	(*this)=GetRotatedZ(angle);
}
コード例 #4
0
ファイル: Vector3D.cpp プロジェクト: EchoLiao/lang
// 绕Y轴旋转向量
void CVector3::RotateZ(double angle)
{
	(*this)=GetRotatedZ(angle);
}