]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/routing/Terminal.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / routing / Terminal.java
index 1e3f307436aedc52177f161ee8ab3d12e9b9e374..fe7ccdd994d58d62b975cf293c57a251fc2ef037 100644 (file)
@@ -1,71 +1,71 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.g2d.routing;\r
-\r
-import java.awt.geom.Rectangle2D;\r
-import java.util.Arrays;\r
-\r
-public class Terminal {\r
-       public static final double[] ZEROS = new double[] { 0.0, 0.0, 0.0, 0.0 };\r
-       \r
-       public double x;\r
-       public double y;\r
-       public int directions;\r
-       public double[] minDist;\r
-       public Rectangle2D parentObstacle;\r
-       \r
-       public Terminal(double x, double y, int directions, double[] minDist,\r
-           Rectangle2D parentObstacle) {\r
-               this.x = x;\r
-               this.y = y;\r
-               this.directions = directions;\r
-               this.minDist = minDist;\r
-               this.parentObstacle = parentObstacle;\r
-       }\r
-\r
-       @Override\r
-       public int hashCode() {\r
-               final int prime = 31;\r
-               int result = 1;\r
-               result = prime * result + directions;\r
-               result = prime * result + Arrays.hashCode(minDist);\r
-               long temp;\r
-               temp = Double.doubleToLongBits(x);\r
-               result = prime * result + (int) (temp ^ (temp >>> 32));\r
-               temp = Double.doubleToLongBits(y);\r
-               result = prime * result + (int) (temp ^ (temp >>> 32));\r
-               return result;\r
-       }\r
-\r
-       @Override\r
-       public boolean equals(Object obj) {\r
-               if (this == obj)\r
-                       return true;\r
-               if (obj == null)\r
-                       return false;\r
-               if (getClass() != obj.getClass())\r
-                       return false;\r
-               Terminal other = (Terminal) obj;\r
-               if (directions != other.directions)\r
-                       return false;\r
-               if (!Arrays.equals(minDist, other.minDist))\r
-                       return false;\r
-               if (Double.doubleToLongBits(x) != Double.doubleToLongBits(other.x))\r
-                       return false;\r
-               if (Double.doubleToLongBits(y) != Double.doubleToLongBits(other.y))\r
-                       return false;\r
-               return true;\r
-       }       \r
-       \r
-       \r
-       \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.g2d.routing;
+
+import java.awt.geom.Rectangle2D;
+import java.util.Arrays;
+
+public class Terminal {
+       public static final double[] ZEROS = new double[] { 0.0, 0.0, 0.0, 0.0 };
+       
+       public double x;
+       public double y;
+       public int directions;
+       public double[] minDist;
+       public Rectangle2D parentObstacle;
+       
+       public Terminal(double x, double y, int directions, double[] minDist,
+           Rectangle2D parentObstacle) {
+               this.x = x;
+               this.y = y;
+               this.directions = directions;
+               this.minDist = minDist;
+               this.parentObstacle = parentObstacle;
+       }
+
+       @Override
+       public int hashCode() {
+               final int prime = 31;
+               int result = 1;
+               result = prime * result + directions;
+               result = prime * result + Arrays.hashCode(minDist);
+               long temp;
+               temp = Double.doubleToLongBits(x);
+               result = prime * result + (int) (temp ^ (temp >>> 32));
+               temp = Double.doubleToLongBits(y);
+               result = prime * result + (int) (temp ^ (temp >>> 32));
+               return result;
+       }
+
+       @Override
+       public boolean equals(Object obj) {
+               if (this == obj)
+                       return true;
+               if (obj == null)
+                       return false;
+               if (getClass() != obj.getClass())
+                       return false;
+               Terminal other = (Terminal) obj;
+               if (directions != other.directions)
+                       return false;
+               if (!Arrays.equals(minDist, other.minDist))
+                       return false;
+               if (Double.doubleToLongBits(x) != Double.doubleToLongBits(other.x))
+                       return false;
+               if (Double.doubleToLongBits(y) != Double.doubleToLongBits(other.y))
+                       return false;
+               return true;
+       }       
+       
+       
+       
+}