]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.datatypes/src/org/simantics/datatypes/literal/Vec2d.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.datatypes / src / org / simantics / datatypes / literal / Vec2d.java
index 44ff33688df606c377e1bfccd7d0045c503c62de..4158e1c95059d464aa4837c3f6c9235dfe39fe35 100644 (file)
@@ -1,54 +1,54 @@
-package org.simantics.datatypes.literal;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.util.Bean;\r
-\r
-\r
-final public class Vec2d extends Bean {\r
-\r
-       public static final Binding BINDING = Bindings.getBindingUnchecked(Vec2d.class);\r
-\r
-       public double x;\r
-       public double y;\r
-\r
-       public Vec2d(double x, double y) {\r
-               super(BINDING);\r
-               this.x = x;\r
-               this.y = y;\r
-       }\r
-\r
-       public boolean isZero() {\r
-               return x==0.0 && y==0.0; \r
-       }\r
-       \r
-       public double norm1() {\r
-               return Math.abs(x) + Math.abs(y);\r
-       }\r
-       \r
-       public double norm2() {\r
-               return Math.sqrt(x*x+y*y);\r
-       }\r
-       \r
-       public double length() {\r
-               return norm2();\r
-       }\r
-       \r
-       public double dot(Vec2d other) {\r
-               return x*other.x + y*other.y;\r
-       }\r
-\r
-       public Vec2d sum(Vec2d other) {\r
-               return new Vec2d(x + other.x , y + other.y);\r
-       }\r
-\r
-       public Vec2d subtraction(Vec2d other) {\r
-               return new Vec2d(x - other.x , y - other.y);\r
-       }\r
-\r
-       @Override\r
-       public String toString() {\r
-               return "Vec2d[x=" + x + ", y=" + y + "]";\r
-       }\r
-       \r
-}\r
+package org.simantics.datatypes.literal;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.util.Bean;
+
+
+final public class Vec2d extends Bean {
+
+       public static final Binding BINDING = Bindings.getBindingUnchecked(Vec2d.class);
+
+       public double x;
+       public double y;
+
+       public Vec2d(double x, double y) {
+               super(BINDING);
+               this.x = x;
+               this.y = y;
+       }
+
+       public boolean isZero() {
+               return x==0.0 && y==0.0; 
+       }
+       
+       public double norm1() {
+               return Math.abs(x) + Math.abs(y);
+       }
+       
+       public double norm2() {
+               return Math.sqrt(x*x+y*y);
+       }
+       
+       public double length() {
+               return norm2();
+       }
+       
+       public double dot(Vec2d other) {
+               return x*other.x + y*other.y;
+       }
+
+       public Vec2d sum(Vec2d other) {
+               return new Vec2d(x + other.x , y + other.y);
+       }
+
+       public Vec2d subtraction(Vec2d other) {
+               return new Vec2d(x - other.x , y - other.y);
+       }
+
+       @Override
+       public String toString() {
+               return "Vec2d[x=" + x + ", y=" + y + "]";
+       }
+       
+}