libeigen/eigen!2509 Closes #2868 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
9 lines
318 B
C++
9 lines
318 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
Matrix3d m = Matrix3d::Identity();
|
|
m(0, 2) = 1e-4;
|
|
cout << "Here's the matrix m:" << endl << m << endl;
|
|
cout << "m.isIdentity() returns: " << m.isIdentity() << endl;
|
|
cout << "m.isIdentity(1e-3) returns: " << m.isIdentity(1e-3) << endl;
|