|
GHUtilsuniqueVertexIndexes Method
|
checks list of points for duplicates with mutual distance less than LTol. Returns indexes of unique points
Namespace:
Karamba.GHopper.Utilities
Assembly:
karambaGH (in karambaGH.dll) Version: 1.15.0.0 (1.15.0.0)
Syntaxpublic static List<int> uniqueVertexIndexes(
List<Point3d> points,
double LTol
)
Public Shared Function uniqueVertexIndexes (
points As List(Of Point3d),
LTol As Double
) As List(Of Integer)
public:
static List<int>^ uniqueVertexIndexes(
List<Point3d>^ points,
double LTol
)
static member uniqueVertexIndexes :
points : List<Point3d> *
LTol : float -> List<int>
Parameters
- points
- Type: System.Collections.GenericListPoint3d
list of points to be checked for duplicates - LTol
- Type: SystemDouble
minimum distance for two nodes to be non unique
Return Value
Type:
ListInt32list of indexes of unique points referring to input list of points
See Also