]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/routing/algorithm1/Rectangle.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / routing / algorithm1 / Rectangle.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.g2d.routing.algorithm1;\r
13 \r
14 import java.awt.geom.Rectangle2D;\r
15 \r
16 public class Rectangle {\r
17     final public double x0, y0, x1, y1;\r
18 \r
19     public Rectangle(double x0, double y0, double x1, double y1) {\r
20         this.x0 = x0;\r
21         this.y0 = y0;\r
22         this.x1 = x1;\r
23         this.y1 = y1;\r
24     }\r
25 \r
26     public boolean intersects(Rectangle rect) {\r
27         return x0 <= rect.x1 && rect.x0 <= x1 && y0 <= rect.y1 && rect.y0 <= y1;\r
28     }\r
29 \r
30     public boolean contains(double x, double y) {\r
31         return x0 <= x && x <= x1 && y0 <= y && y <= y1;\r
32     }\r
33 \r
34     public static Rectangle of(Rectangle2D rect) {\r
35         return new Rectangle(rect.getMinX(), rect.getMinY(), rect.getMaxX(), rect.getMaxY());\r
36     }\r
37 \r
38     @Override\r
39     public String toString() {\r
40         return getClass().getSimpleName()\r
41         + "[x0=" + x0 +\r
42         ",y0=" + y0 +\r
43         ",x1=" + x1 +\r
44         ",y1=" + y1 + "]";\r
45     }\r
46 \r
47 }\r