Bounds.java
package org.djutils.draw.bounds;
import org.djutils.draw.point.Point;
/**
* Bounds is the generic tagging interface that indicates the bounds for an object, where the simplest implementation is minX,
* minY, maxX and maxY for 2D, and minX, minY, minZ and maxX, maxY and maxZ for 3D. Other bounds such as a BoundingCircle,
* BoundingSphere or BoundingPolytope could also be defined.
* <p>
* Copyright (c) 2020-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
* </p>
* @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="https://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @param <B> The bounds type (2d or 3d)
* @param <P> The point type (2d or 3d)
*/
public interface Bounds<B extends Bounds<B, P>, P extends Point<P>>
{
/**
* Return the absolute lower bound for x.
* @return double; the absolute lower bound for x
*/
double getMinX();
/**
* Return the absolute upper bound for x.
* @return double; the absolute upper bound for x
*/
double getMaxX();
/**
* Return the absolute lower bound for y.
* @return double; the absolute lower bound for y
*/
double getMinY();
/**
* Return the absolute upper bound for y.
* @return double; the absolute upper bound for y
*/
double getMaxY();
/**
* Return the extent of this Bounds2d in the x-direction.
* @return double; the extent of this Bounds2d in the x-direction
*/
default double getDeltaX()
{
return getMaxX() - getMinX();
}
/**
* Return the extent of this Bounds2d in the y-direction.
* @return double; the extent of this Bounds2d in the y-direction
*/
default double getDeltaY()
{
return getMaxY() - getMinY();
}
/**
* Return the mid point of this Bounds object.
* @return P; the mid point of this Bounds object
*/
P midPoint();
/**
* Check if a point is contained in this Bounds.
* @param point P; the point
* @return boolean; true if the point is within this Bounds; false if the point is not within this Bounds, or on an edge of
* this Bounds
* @throws NullPointerException when point is null
*/
boolean contains(P point) throws NullPointerException;
/**
* Check if this Bounds completely contains another Bounds. If any point of the other Bounds lies on an edge (2d) or surface
* (3d) of this Bounds, this method returns false.
* @param otherBounds B; the Bounds to check for complete containment within this Bounds.
* @return boolean; false if any point of D is on or outside one of the borders of this Bounds; true when all points of D
* are contained within this Bounds.
* @throws NullPointerException when drawable2d is null
*/
boolean contains(B otherBounds) throws NullPointerException;
/**
* Check if this Bounds covers or touches a point.
* @param point P; the Point for which to check if it is covered/touched by this Bounds
* @return boolean; whether this Bounds covers or touches the point
* @throws NullPointerException when point is null
*/
boolean covers(P point) throws NullPointerException;
/**
* Check if no part of a Bounds is outside this Bounds. The edges/surfaces of this Bounds are considered inside.
* @param otherBounds B; the Bounds for which to check if it is covered by this Bounds
* @return boolean; whether this Bounds contains the provided Bounds, including overlapping borders
* @throws NullPointerException when otherBounds is null
*/
boolean covers(B otherBounds) throws NullPointerException;
/**
* Return whether a Bounds is disjoint from this Bounds. Touching at an edge is <b>not</b> considered disjoint. A Bounds
* that completely surrounds this Bounds is <b>not</b> disjoint.
* @param otherBounds B; the other Bounds
* @return boolean; true if the drawable is disjoint from this Bounds, or only touches an edge; false if any point of the
* other Bounds is inside this Bounds, or the other Bounds surrounds this Bounds
* @throws NullPointerException when bounds is null
*/
boolean disjoint(B otherBounds) throws NullPointerException;
/**
* Return whether this Bounds intersects another Bounds. Touching at an edge is considered intersecting.
* @param otherBounds B; the other Bounds
* @return boolean; whether this bounding box/rectangle intersects the other Bounds
* @throws NullPointerException when otherBounds is null
*/
boolean intersects(B otherBounds);
/**
* Return the intersecting Bounds of this Bounds and another Bounds. Touching at an edge is considered intersecting. In case
* there is no intersection, null is returned.
* @param otherBounds B; the other Bounds
* @return Bounds; the intersecting Bounds of this Bounds and another Bounds. Touching at the edge is not seen as
* intersecting. If not intersecting; null is returned
* @throws NullPointerException when otherBounds is null
*/
B intersection(B otherBounds);
}