Merge commit '42b2e5ca519766e37ce6941ba4faecc9691cc403' into upstream
[debian/openrocket] / core / src / net / sf / openrocket / util / Transformation.java
index 2c54697409da1b9ab6cd8baba4a13ce7c0722238..8656a4f25762e7cd857cb61e31cb722f2cd22137 100644 (file)
@@ -257,23 +257,4 @@ public class Transformation implements java.io.Serializable {
                return this.translate.equals(o.translate);
        }
        
-       public static void main(String[] arg) {
-               Transformation t;
-               
-               t = new Transformation();
-               t.print("Empty");
-               t = new Transformation(1,2,3);
-               t.print("1,2,3");
-               t = new Transformation(new Coordinate(2,3,4));
-               t.print("coord 2,3 4");
-               
-               t = Transformation.rotate_y(0.01);
-               t.print("rotate_y 0.01");
-               
-               t = new Transformation(-1,0,0);
-               t = t.applyTransformation(Transformation.rotate_y(0.01));
-               t = t.applyTransformation(new Transformation(1,0,0));
-               t.print("shift-rotate-shift");
-       }
-       
 }