Click or drag to resize

MeshHealNakedEdges Method

Attempts to "heal" naked edges in a mesh based on a given distance. First attempts to move vertices to neighboring vertices that are within that distance away. Then it finds edges that have a closest point to the vertex within the distance and splits the edge. When it finds one it splits the edge and makes two new edges using that point.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax
public bool HealNakedEdges(
	double distance
)

Parameters

distance
Type: SystemDouble
Distance to not exceed when modifying the mesh.

Return Value

Type: Boolean
true if successful, false otherwise.
See Also