From ba1c0fd2fa94d593b9ac8eca0b50a21c02dd3b54 Mon Sep 17 00:00:00 2001 From: Kevin Ruland Date: Thu, 23 Aug 2012 02:37:51 +0000 Subject: [PATCH] Removed FIXME comment since I'm convinced the test case is correct. Recall these tests were originally in a main loop. --- core/test/net/sf/openrocket/util/TransformationTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/test/net/sf/openrocket/util/TransformationTest.java b/core/test/net/sf/openrocket/util/TransformationTest.java index 25b8941bb..cb63b3f27 100644 --- a/core/test/net/sf/openrocket/util/TransformationTest.java +++ b/core/test/net/sf/openrocket/util/TransformationTest.java @@ -40,7 +40,6 @@ public class TransformationTest { assertEquals( new Coordinate(2,3,5), a ); } - // FIXME - is this correct? shouldn't a rotation preserve coordinate length? t = Transformation.rotate_y(0.01); { Coordinate a = t.transform( new Coordinate(1,0,0) );