Uses of Class
com.mindee.geometry.Point
-
Packages that use Point Package Description com.mindee.geometry -
-
Uses of Point in com.mindee.geometry
Methods in com.mindee.geometry that return Point Modifier and Type Method Description Point
Point.PointBuilder. build()
Point
Polygon. getCentroid()
Get the central coordinates (centroid) of the Polygon.static Point
PolygonUtils. getCentroid(List<Point> vertices)
Get the central coordinates (centroid) of a list of Points.Methods in com.mindee.geometry that return types with arguments of type Point Modifier and Type Method Description List<Point>
Polygon. getCoordinates()
Methods in com.mindee.geometry with parameters of type Point Modifier and Type Method Description static boolean
PolygonUtils. isPointInPolygonY(Point centroid, Polygon polygon)
Determine if a Point is within a Polygon's Y axis.static boolean
PolygonUtils. isPointInY(Point centroid, Double yMin, Double yMax)
Determine if a Point is within two Y coordinates.Method parameters in com.mindee.geometry with type arguments of type Point Modifier and Type Method Description Polygon.PolygonBuilder
Polygon.PolygonBuilder. coordinates(List<Point> coordinates)
static Point
PolygonUtils. getCentroid(List<Point> vertices)
Get the central coordinates (centroid) of a list of Points.static MinMax
PolygonUtils. getMinMaxX(List<Point> vertices)
Get the maximum and minimum X coordinates in a given list of Points.static MinMax
PolygonUtils. getMinMaxY(List<Point> vertices)
Get the maximum and minimum Y coordinates in a given list of Points.Constructor parameters in com.mindee.geometry with type arguments of type Point Constructor Description Polygon(List<Point> coordinates)
-