Click or drag to resize

MeshCreateContourCurves Method (Mesh, Plane, Double)

Constructs contour curves for a mesh, sectioned at a plane.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 7.13
Syntax
public static Curve[] CreateContourCurves(
	Mesh meshToContour,
	Plane sectionPlane,
	double tolerance
)

Parameters

meshToContour
Type: Rhino.GeometryMesh
A mesh to contour.
sectionPlane
Type: Rhino.GeometryPlane
A cutting plane.
tolerance
Type: SystemDouble
A tolerance value. If negative, the positive value will be used. WARNING! Good tolerance values are in the magnitude of 10^-7, or RhinoMath.SqrtEpsilon*10. See comments at MeshIntersectionsTolerancesCoefficient

Return Value

Type: Curve
An array of curves. This array can be empty.
See Also