예제 #1
0
파일: cVec4.cpp 프로젝트: pilkch/library
 void cVec4::RotateZ(double angle)
 {
   (*this)=GetRotatedZ(angle);
 }
예제 #2
0
void VECTOR4D::RotateZ(double angle)
{
	(*this)=GetRotatedZ(angle);
}
예제 #3
0
void PxVector::RotateZ(double angle)
{
	(*this)=GetRotatedZ(angle);
}
예제 #4
0
파일: Vector3D.cpp 프로젝트: EchoLiao/lang
// 绕Y轴旋转向量
void CVector3::RotateZ(double angle)
{
	(*this)=GetRotatedZ(angle);
}