Removed uncessary print.

This commit is contained in:
James Goppert
2016-01-23 23:35:44 -05:00
parent d761bd3721
commit 0969b0ae56
-1
View File
@@ -12,7 +12,6 @@ int main()
Vector3f a(1, 0, 0);
Vector3f b(0, 1, 0);
Vector3f c = a.cross(b);
c.print();
TEST (c == Vector3f(0,0,1));
c = a % b;
TEST (c == Vector3f(0,0,1));