Click or drag to resize

MeshReduce Method (Int32, Boolean, Int32, Boolean)

Reduce polygon count

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.10
Syntax
public bool Reduce(
	int desiredPolygonCount,
	bool allowDistortion,
	int accuracy,
	bool normalizeSize
)

Parameters

desiredPolygonCount
Type: SystemInt32
desired or target number of faces
allowDistortion
Type: SystemBoolean
If true, faces are removed until desiredPolygonCount is reached, distorting the shape as needed. If false, only flat (coplanar) regions are simplified, which leaves the shape unchanged and ignores desiredPolygonCount.
accuracy
Type: SystemInt32
Integer from 1 to 10 telling how accurate reduction algorithm to use. Greater number gives more accurate results
normalizeSize
Type: SystemBoolean
If true mesh is fitted to an axis aligned unit cube until reduction is complete

Return Value

Type: Boolean
True if mesh is successfully reduced and false if mesh could not be reduced for some reason.
See Also