/* * $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.afp.RectangularShape2afp; import org.arakhne.afc.vmutil.asserts.AssertMessages; /** Abstract rectangular shape with 2 double precision floating-point numbers. * * @param <IT> is the type of the implementation of this shape. * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ * @since 13.0 */ public abstract class AbstractRectangularShape2d<IT extends AbstractRectangularShape2d<?>> extends AbstractShape2d<IT> implements RectangularShape2afp<Shape2d<?>, IT, PathElement2d, Point2d, Vector2d, Rectangle2d> { private static final long serialVersionUID = 562658629477723655L; private double minx; private double miny; private double maxx; private double maxy; /** Construct an empty shape. */ public AbstractRectangularShape2d() { // } /** Constructor by copy. * @param rect the rectangular shape to copy. */ public AbstractRectangularShape2d(RectangularShape2afp<?, ?, ?, ?, ?, ?> rect) { assert rect != null : AssertMessages.notNullParameter(); this.minx = rect.getMinX(); this.miny = rect.getMinY(); this.maxx = rect.getMaxX(); this.maxy = rect.getMaxY(); } @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 (x > this.maxx) { 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 (x < this.minx) { 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 (y > this.maxy) { 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 (y < this.miny) { this.miny = y; } fireGeometryChange(); } } @Pure @Override public int hashCode() { long 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); final int b = (int) bits; return b ^ (b >> 31); } }