  | ConvexDecompositionIntermediateVertexLimit Property  | 
            Gets or sets the maximal of number vertices per convex part during the decomposition 
            process.
            
 
Namespace: DigitalRune.Geometry.MeshesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntaxpublic int IntermediateVertexLimit { get; set; }Public Property IntermediateVertexLimit As Integer
	Get
	Set
public:
property int IntermediateVertexLimit {
	int get ();
	void set (int value);
}member IntermediateVertexLimit : int with get, set
Property Value
Type: 
Int32
            The maximal number of vertices per convex part during the decomposition process. The default 
            value is 32.
            
Exceptions
RemarksVertexLimit defines the max number of vertices per convex part of the final
            decomposition. 
IntermediateVertexLimit defines the max number of vertices
            during the decomposition process. 
            
 
See Also