Click or drag to resize

ConcaveHull Constructor

Initializes a new instance of the ConcaveHull class.

Namespace: Altaxo.Geometry.Int64_2D
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public ConcaveHull(
	IReadOnlyList<IntPoint> points,
	double concavity,
	double minimalEdgeLength
)

Parameters

points  IReadOnlyListIntPoint
The points for which to calculate the concave hull.
concavity  Double
The concavity is a value in the interval [-1, 1] that represents the cosine of the allowed angle between a line on the convex hull and a potential concave 'bend'. Thus a value of 1 is the limit case of a convex hull, a value of -1 allows sharp and deep bends.
minimalEdgeLength  Double
The minimal length of an edge of the hull that is considered as a candidate edge for having a concave bend.
See Also