MeshFaceListGetConnectedFacesToEdges Method |
Uses startFaceIndex and finds all connected face indexes up to unwelded
or naked edges. If treatNonmanifoldLikeUnwelded is true then non-manifold
edges will be considered as unwelded or naked
Namespace:
Rhino.Geometry.Collections
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.6
Syntax public int[] GetConnectedFacesToEdges(
int startFaceIndex,
bool treatNonmanifoldLikeUnwelded
)
Public Function GetConnectedFacesToEdges (
startFaceIndex As Integer,
treatNonmanifoldLikeUnwelded As Boolean
) As Integer()
Parameters
- startFaceIndex
- Type: SystemInt32
Initial face index - treatNonmanifoldLikeUnwelded
- Type: SystemBoolean
True means non-manifold edges will be handled like unwelded edges,
False means they aren't considered
Return Value
Type:
Int32Array of connected face indexes
See Also