blob: c2cfe2201240d96a88bc2baa71880b8c68f13ee9 [file] [log] [blame]
Gael Guennebaudc10f0692008-07-21 00:34:46 +00001Matrix3d m = Matrix3d::Zero();
Benoit Jacob84934ea2008-01-06 16:35:21 +00002m(0,2) = 1e-4;
3cout << "Here's the matrix m:" << endl << m << endl;
4cout << "m.isZero() returns: " << m.isZero() << endl;
5cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) << endl;