mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
- the static constants are private again in the Derived classes - more documentation and code snippets - new isDiagonal() method
6 lines
223 B
C++
6 lines
223 B
C++
Matrix3d m = Matrix3d::identity();
|
|
m(0,2) = 1e-4;
|
|
cout << "Here's the matrix m:" << endl << m << endl;
|
|
cout << "m.isOrtho() returns: " << m.isOrtho() << endl;
|
|
cout << "m.isOrtho(1e-3) returns: " << m.isOrtho(1e-3) << endl;
|