Fixed formatting. Made traivs more verbose.

This commit is contained in:
James Goppert
2016-01-23 23:33:25 -05:00
parent 38211e1aff
commit d761bd3721
4 changed files with 9 additions and 3 deletions
+6
View File
@@ -12,6 +12,12 @@ int main()
TEST(fabs(wrap_pi(-4.0) - (-4.0 + 2*M_PI)) < 1e-5);
TEST(fabs(wrap_pi(3.0) - (3.0)) < 1e-3);
wrap_pi(NAN);
Vector3f a(1, 2, 3);
Vector3f b(4, 5, 6);
a.T().print();
TEST(!isEqual(a, b));
TEST(isEqual(a, a));
return 0;
}