Creates a polygon from a list of points.

Namespace: Spherical
Assembly: SphericalLib (in SphericalLib.dll) Version: 1.0.5951.32246 (1.0.0.0)

Syntax

C#
public Convex(
	List<Cartesian> list,
	PointOrder order
)
Visual C++
public:
Convex(
	List<Cartesian>^ list, 
	PointOrder order
)
F#
new : 
        list:List<Cartesian> * 
        order:PointOrder -> Convex

Parameters

list
Type: System.Collections.Generic..::..List<(Of <(<'Cartesian>)>)>
The list of points.
order
Type: Spherical..::..PointOrder
The ordering of points.

Remarks

The points are connected with great circles.

See Also