Geometry.GetConvexHull

Geometry.GetConvexHull method

Computes the convex hull of this geometry.

public IGeometry GetConvexHull()

Return Value

A geometry that represents a convex hull of this geometry. If this geometry has no points then the result is Null. If this geometry has only one point then the result is this point. If this geometry has only two points then the result is ILineString with the points. If this geometry has three or more points then the result is ILinearRing that represents a convex hull around all geometries points.

See Also