Package com.mindee.geometry
Class Bbox
- java.lang.Object
-
- com.mindee.geometry.Bbox
-
public final class Bbox extends Object
True representation of a mathematical bounding box.
-
-
Constructor Summary
Constructors Constructor Description Bbox(double minX, double maxX, double minY, double maxY)
The default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Polygon
getAsPolygon()
Get the Bbox as a Polygon.double
getMaxX()
double
getMaxY()
double
getMinX()
double
getMinY()
-
-
-
Method Detail
-
getAsPolygon
public Polygon getAsPolygon()
Get the Bbox as a Polygon.
-
getMinX
public double getMinX()
-
getMinY
public double getMinY()
-
getMaxX
public double getMaxX()
-
getMaxY
public double getMaxY()
-
-