Create a convex spherical polygon from the spherical convex hull of the given points

Namespace: Spherical.Shape
Assembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0

Syntax

C#
public static Convex Make(
	List<double> xs,
	List<double> ys,
	List<double> zs,
	out Chull..::..Cherror err
)
Visual C++
public:
static Convex^ Make(
	List<double>^ xs, 
	List<double>^ ys, 
	List<double>^ zs, 
	[OutAttribute] Chull..::..Cherror% err
)
F#
static member Make : 
        xs:List<float> * 
        ys:List<float> * 
        zs:List<float> * 
        err:Chull..::..Cherror byref -> Convex 

Parameters

xs
Type: System.Collections.Generic..::..List<(Of <(<'Double>)>)>
list of x coords
ys
Type: System.Collections.Generic..::..List<(Of <(<'Double>)>)>
list of y coords
zs
Type: System.Collections.Generic..::..List<(Of <(<'Double>)>)>
list of z coords
err
Type: Spherical.Shape..::..Chull..::..Cherror%
error code

Return Value

a new Spherical.Convex object

See Also