示例#1
0
文件: cVec4.cpp 项目: pilkch/library
 void cVec4::RotateY(double angle)
 {
   (*this)=GetRotatedY(angle);
 }
示例#2
0
void VECTOR4D::RotateY(double angle)
{
	(*this)=GetRotatedY(angle);
}
示例#3
0
void PxVector::RotateY(double angle)
{
	(*this)=GetRotatedY(angle);
}
示例#4
0
// 绕Y轴旋转向量
void CVector3::RotateY(double angle)
{
	(*this)=GetRotatedY(angle);
}