示例#1
0
文件: transform.cpp 项目: orthez/fcl
void Quaternion3f::fromEuler(FCL_REAL a, FCL_REAL b, FCL_REAL c)
{
  Matrix3f R;
  R.setEulerYPR(a, b, c);

  fromRotation(R);
}
示例#2
0
Orientation::Orientation(const RotationMatrix& rotationMatrix)
{
  fromRotation(rotationMatrix);
}