version 1.1.9
[debian/openrocket] / src / net / sf / openrocket / gui / print / PrintFigure.java
index ae909269fbe4060e368adcc9fc32a9f6475fc32a..3f4655c6a1871a2b245f12fc94ccb62a8a2bedf3 100644 (file)
@@ -11,23 +11,24 @@ import net.sf.openrocket.rocketcomponent.Configuration;
  * to fit in the width of the chosen page size.
  */
 public class PrintFigure extends RocketFigure {
-
-    /**
-     * Constructor.
-     * 
-     * @param configuration  the configuration
-     */
-    public PrintFigure (final Configuration configuration) {
-        super(configuration);
-    }
-
-    protected double computeTy (int heightPx) {
-        super.computeTy(heightPx);
-        return 0;
-    }
-    
-    public void setScale (final double theScale) {
-        this.scale = theScale; //dpi/0.0254*scaling;
-        updateFigure();
-    }
+       
+       /**
+        * Constructor.
+        * 
+        * @param configuration  the configuration
+        */
+       public PrintFigure(final Configuration configuration) {
+               super(configuration);
+       }
+       
+       @Override
+       protected double computeTy(int heightPx) {
+               super.computeTy(heightPx);
+               return 0;
+       }
+       
+       public void setScale(final double theScale) {
+               this.scale = theScale; //dpi/0.0254*scaling;
+               updateFigure();
+       }
 }