M_Rhino_Geometry_Collections_NurbsCurvePointList_ValidateSpacing - mcneel/rhinocommon-api-docs GitHub Wiki
Simple check of distance between adjacent control points
Namespace: Rhino.Geometry.Collections
Assembly: RhinoCommon (in RhinoCommon.dll) Version: Rhino 6.0
C#
public bool ValidateSpacing(
double closeTolerance,
double stackTolerance,
out int[] closeIndices,
out int[] stackedIndices
)VB
Public Function ValidateSpacing (
closeTolerance As Double,
stackTolerance As Double,
<OutAttribute> ByRef closeIndices As Integer(),
<OutAttribute> ByRef stackedIndices As Integer()
) As Boolean
- closeTolerance
- Type: System.Double
tolerance to use for determining if control points are 'close' - stackTolerance
- Type: System.Double
tolerance to use for determining if control points are 'stacked' - closeIndices
- Type: System.Int32[]
indices of 'close' points are returned in this array - stackedIndices
- Type: System.Int32[]
indices of 'stacked' points are returned in this array
Type: Boolean
true if close or stacked indices are found
Supported in: 6.0.16224.21491
NurbsCurvePointList Class
Rhino.Geometry.Collections Namespace