Sign in
android
/
platform
/
external
/
eigen
/
bcf7b2918
/
.
/
doc
/
snippets
/
MatrixBase_isOrtho_matrix.cpp
blob: a79df920202e2c1e962f5abd8e317bdb8637c5a5 [
file
] [
log
] [
blame
]
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
;