MeshSplitWithProjectedPolylines Method (IEnumerablePolylineCurve, Double) |
Splits a mesh by adding edges in correspondence with input polylines, and divides the mesh at partitioned areas.
Polyline segments that are measured not to be on the mesh will be ignored.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 7.0
Syntax public Mesh[] SplitWithProjectedPolylines(
IEnumerable<PolylineCurve> curves,
double tolerance
)
Public Function SplitWithProjectedPolylines (
curves As IEnumerable(Of PolylineCurve),
tolerance As Double
) As Mesh()
Parameters
- curves
- Type: System.Collections.GenericIEnumerablePolylineCurve
An array, a list or any enumerable of polyline curves. - tolerance
- Type: SystemDouble
A tolerance value.
Return Value
Type:
MeshAn array of meshes, or null if no change would happen.
See Also