/* * $Id$ * This file is a part of the Arakhne Foundation Classes, http://www.arakhne.org/afc * * Copyright (c) 2000-2012 Stephane GALLAND. * Copyright (c) 2005-10, Multiagent Team, Laboratoire Systemes et Transports, * Universite de Technologie de Belfort-Montbeliard. * Copyright (c) 2013-2016 The original authors, and other authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.arakhne.afc.math.geometry.d2.d; import org.eclipse.xtext.xbase.lib.Pure; import org.arakhne.afc.math.geometry.d2.Point2D; import org.arakhne.afc.math.geometry.d2.afp.Rectangle2afp; /** A rectangle with 2 double precision floating-point numbers. * * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ * @since 13.0 */ public class Rectangle2d extends AbstractShape2d<Rectangle2d> implements Rectangle2afp<Shape2d<?>, Rectangle2d, PathElement2d, Point2d, Vector2d, Rectangle2d> { private static final long serialVersionUID = -2138921378214589458L; private double minx; private double miny; private double maxx; private double maxy; /** Construct an empty rectangle. */ public Rectangle2d() { super(); } /** Construct a rectangle with the given minimum and maxium corners. * * @param min is the min corner of the rectangle. * @param max is the max corner of the rectangle. */ public Rectangle2d(Point2D<?, ?> min, Point2D<?, ?> max) { setFromCorners(min.getX(), min.getY(), max.getX(), max.getY()); } /** Construct a rectangle with the given minimum corner and sizes. * @param x x coordinate of the minimum corner. * @param y y coordinate of the minimum corner. * @param width width of the rectangle. * @param height height of the rectangle. */ public Rectangle2d(double x, double y, double width, double height) { setFromCorners(x, y, x + width, y + height); } /** Constructor by copy. * @param rectangle the rectangle to copy. */ public Rectangle2d(Rectangle2d rectangle) { set(rectangle); } @Override public void setFromCorners(double x1, double y1, double x2, double y2) { final double a; final double b; final double c; final double d; if (x1 <= x2) { a = x1; b = x2; } else { a = x2; b = x1; } if (y1 <= y2) { c = y1; d = y2; } else { c = y2; d = y1; } if (this.minx != a || this.maxx != b || this.miny != c || this.maxy != d) { this.minx = a; this.maxx = b; this.miny = c; this.maxy = d; fireGeometryChange(); } } @Pure @Override public double getMinX() { return this.minx; } @Override public void setMinX(double x) { if (this.minx != x) { this.minx = x; if (this.maxx < x) { this.maxx = x; } fireGeometryChange(); } } @Pure @Override public double getMaxX() { return this.maxx; } @Override public void setMaxX(double x) { if (this.maxx != x) { this.maxx = x; if (this.minx > x) { this.minx = x; } fireGeometryChange(); } } @Pure @Override public double getMinY() { return this.miny; } @Override public void setMinY(double y) { if (this.miny != y) { this.miny = y; if (this.maxy < y) { this.maxy = y; } fireGeometryChange(); } } @Pure @Override public double getMaxY() { return this.maxy; } @Override public void setMaxY(double y) { if (this.maxy != y) { this.maxy = y; if (this.miny > y) { this.miny = y; } fireGeometryChange(); } } @Pure @Override public int hashCode() { int bits = 1; bits = 31 * bits + Double.hashCode(this.minx); bits = 31 * bits + Double.hashCode(this.miny); bits = 31 * bits + Double.hashCode(this.maxx); bits = 31 * bits + Double.hashCode(this.maxy); return bits ^ (bits >> 31); } }