RhinoCommon API
MeshClashFindDetail Method (RhinoObject, RhinoObject, Double) |
Finds all of the mesh faces on each of two Rhino objects that interfere within a clash distance.
This function uses the object's mesh to calculate the interferences.
Acceptable object types include: BrepObject, ExtrusionObject, MeshObject, and SubDObject.
Namespace: Rhino.Geometry.Intersect
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 7.0
public static Mesh[] FindDetail( RhinoObject objA, RhinoObject objB, double distance )
Public Shared Function FindDetail ( objA As RhinoObject, objB As RhinoObject, distance As Double ) As Mesh()
Parameters
- objA
- Type: Rhino.DocObjectsRhinoObject
The first Rhino object. - objB
- Type: Rhino.DocObjectsRhinoObject
The second Rhino object. - distance
- Type: SystemDouble
The largest distance at which a clash can occur.
Return Value
Type: MeshThe resulting meshes are sub-meshes of the input meshes if successful, or an empty array on error.