Gets or sets the points for which the 2d convex hull is to be found.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public PointSet InitialPoints { get; set; }
Visual Basic (Declaration)
Public Property InitialPoints As PointSet
Visual C++
public:
property PointSet^ InitialPoints {
	PointSet^ get ();
	void set (PointSet^ value);
}

Field Value

A point set for which to compute the convex hull.

Remarks

The convex hull is computed for the projection of the points onto the xy-plane. This is, only the x and y coordinates of the points are considered.

See Also