| Constructor and Description |
|---|
ConvexHull(Coordinate
Create a new convex hull construction for the input
Coordinate array.
|
ConvexHull(Geometry
Create a new convex hull construction for the input
Geometry.
|
| Modifier and Type | Method and Description |
|---|---|
Geometry |
getConvexHull()
Returns a
Geometry that represents the convex hull of the input geometry.
|
protected Coordinate |
toCoordinateArray(Stack
An alternative to Stack.toArray, which is not present in earlier versions of Java.
|
public ConvexHull(Geometrygeometry)
Geometry.
public ConvexHull(Coordinate[] pts, GeometryFactory geomFactory)
Coordinate array.
public GeometrygetConvexHull()
Geometry that represents the convex hull of the input geometry. The returned geometry contains the minimal number of points needed to represent the convex hull. In particular, no more than two consecutive points will be collinear.
Polygon; 2 points, a
LineString; 1 point, a
Point; 0 points, an empty
GeometryCollection.
protected Coordinate[] toCoordinateArray(Stack stack)