IntersectionMeshMeshAccurate Method |
Rhino 5 for Windows
Intersects two meshes. Overlaps and near misses are handled.
Namespace: Rhino.Geometry.IntersectAssembly: RhinoCommon (in RhinoCommon.dll) Version: 5.1.30000.17 (5.13.60913.21340)
Syntaxpublic static Polyline[] MeshMeshAccurate(
Mesh meshA,
Mesh meshB,
double tolerance
)
Public Shared Function MeshMeshAccurate (
meshA As Mesh,
meshB As Mesh,
tolerance As Double
) As Polyline()
Parameters
- meshA
- Type: Rhino.GeometryMesh
First mesh for intersection. - meshB
- Type: Rhino.GeometryMesh
Second mesh for intersection. - tolerance
- Type: SystemDouble
Intersection tolerance.
Return Value
Type:
PolylineAn array of intersection polylines.
See Also