Creates a region from a collection of convexes.

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

Syntax

C#
public Region(
	IEnumerable<Convex> collection
)
Visual C++
public:
Region(
	IEnumerable<Convex^>^ collection
)
F#
new : 
        collection:IEnumerable<Convex> -> Region

Parameters

collection
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Convex>)>)>
The collection of convexes.

Remarks

Does not clone the convexes, just copies the references for efficiency.

See Also