Click or drag to resize
DigitalRuneConvexPolyhedron Constructor
Initializes a new instance of the ConvexPolyhedron class.

Namespace: DigitalRune.Geometry.Shapes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public ConvexPolyhedron(
	IEnumerable<Vector3F> points
)

Parameters

points
Type: System.Collections.GenericIEnumerableVector3F
A collection of points which from which a convex polyhedron is built.
Exceptions
ExceptionCondition
NotSupportedException Too many vertices in convex hull. Max. 65534 vertices in a convex polyhedron are supported.
Remarks
The convex polyhedron is the convex hull of points. Points within the convex hull are automatically removed.
See Also