loci.common.Region Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ome-common Show documentation
Show all versions of ome-common Show documentation
Contains common I/O, date parsing, and XML processing classes.
The newest version!
/*
* #%L
* Common package for I/O and related utilities
* %%
* Copyright (C) 2005 - 2016 Open Microscopy Environment:
* - Board of Regents of the University of Wisconsin-Madison
* - Glencoe Software, Inc.
* - University of Dundee
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package loci.common;
/**
* A class for representing a rectangular region.
* This class is very similar to {@link java.awt.Rectangle};
* it mainly exists to avoid problems with AWT, JNI and headless operation.
*/
public class Region {
// -- Fields --
public int x;
public int y;
public int width;
public int height;
// -- Constructors --
public Region() {
}
public Region(int x, int y, int w, int h) {
this.x = x;
this.y = y;
this.width = w;
this.height = h;
}
// -- Region API --
/**
* @param r the region to check for intersection
* @return true if this region intersects the given region
* @see java.awt.Rectangle#intersects(java.awt.Rectangle)
*/
public boolean intersects(Region r) {
int tw = this.width;
int th = this.height;
int rw = r.width;
int rh = r.height;
if (rw <= 0 || rh <= 0 || tw <= 0 || th <= 0) {
return false;
}
int tx = this.x;
int ty = this.y;
int rx = r.x;
int ry = r.y;
rw += rx;
rh += ry;
tw += tx;
th += ty;
boolean rtn = ((rw < rx || rw > tx) && (rh < ry || rh > ty) &&
(tw < tx || tw > rx) && (th < ty || th > ry));
return rtn;
}
/**
* Returns a Region representing the intersection of this Region with the
* given Region. If the two Regions do not intersect, the result is an
* empty Region.
*
* @param r the region for which to calculate an intersection (or overlap)
* @return a Region representing the intersection (overlap) of the two Regions.
* If the two Regions have no common area, then the width and/or height
* of the returned Region will be 0. null is never returned.
*/
public Region intersection(Region r) {
int x = Math.max(this.x, r.x);
int y = Math.max(this.y, r.y);
int w = Math.min(this.x + this.width, r.x + r.width) - x;
int h = Math.min(this.y + this.height, r.y + r.height) - y;
if (w < 0) w = 0;
if (h < 0) h = 0;
return new Region(x, y, w, h);
}
/**
* Returns true if the point specified by the given X and Y coordinates
* is contained within this region.
*
* @param xc the integer X coordinate of a point
* @param yc the integer Y coordinate of a point
* @return true if this Region encloses the given point
*/
public boolean containsPoint(int xc, int yc) {
return intersects(new Region(xc, yc, 1, 1));
}
@Override
public String toString() {
return "x=" + x + ", y=" + y + ", w=" + width + ", h=" + height;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof Region)) return false;
Region that = (Region) o;
return this.x == that.x && this.y == that.y && this.width == that.width &&
this.height == that.height;
}
@Override
public int hashCode() {
return toString().hashCode();
}
}