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