mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
7aba51ce53
* Bug fixes in euler angle snippet, Assign and MapBase * Started a "quick start guide" (draft state)
6 lines
210 B
C++
6 lines
210 B
C++
Matrix3f m;
|
|
m = AngleAxisf(0.25*M_PI, Vector3f::UnitX())
|
|
* AngleAxisf(0.5*M_PI, Vector3f::UnitY())
|
|
* AngleAxisf(0.33*M_PI, Vector3f::UnitZ());
|
|
cout << m << endl << "is unitary: " << m.isUnitary() << endl;
|