Beispiel #1
0
void Quaternion3f::fromEuler(FCL_REAL a, FCL_REAL b, FCL_REAL c)
{
  Matrix3f R;
  R.setEulerYPR(a, b, c);

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