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