You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
210 B

  1. Matrix3f m;
  2. m = AngleAxisf(0.25*M_PI, Vector3f::UnitX())
  3. * AngleAxisf(0.5*M_PI, Vector3f::UnitY())
  4. * AngleAxisf(0.33*M_PI, Vector3f::UnitZ());
  5. cout << m << endl << "is unitary: " << m.isUnitary() << endl;