]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/routing/TrivialRouter2.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / routing / TrivialRouter2.java
index b447f4205d0e1fc113cb20e31d9f208bf4cbac40..61f01c0efd068c561892990ab4453882892078b0 100644 (file)
@@ -1,35 +1,35 @@
-/*******************************************************************************\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.Path2D;\r
-\r
-import org.simantics.g2d.routing.IConnection.Connector;\r
-\r
-public class TrivialRouter2 implements IRouter2 {\r
-\r
-    public static final TrivialRouter2 INSTANCE = new TrivialRouter2();\r
-\r
-    @Override\r
-    public void route(IConnection connection) {\r
-        for (Object seg : connection.getSegments()) {\r
-            Connector begin = connection.getBegin(seg);\r
-            Connector end = connection.getEnd(seg);\r
-\r
-            Path2D path = new Path2D.Double();\r
-            path.moveTo(begin.x, begin.y);\r
-            path.lineTo(end.x, end.y);\r
-            connection.setPath(seg, path);\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.Path2D;
+
+import org.simantics.g2d.routing.IConnection.Connector;
+
+public class TrivialRouter2 implements IRouter2 {
+
+    public static final TrivialRouter2 INSTANCE = new TrivialRouter2();
+
+    @Override
+    public void route(IConnection connection) {
+        for (Object seg : connection.getSegments()) {
+            Connector begin = connection.getBegin(seg);
+            Connector end = connection.getEnd(seg);
+
+            Path2D path = new Path2D.Double();
+            path.moveTo(begin.x, begin.y);
+            path.lineTo(end.x, end.y);
+            connection.setPath(seg, path);
+        }
+    }
+
+}