You are here: Start » FIL.NET » Invoke.FindClosestPoints
For each given point, finds the closest point among the given point set.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void FindClosestPoints ( List<Fil.Point2D> inPointSet, List<Fil.Point2D> inQueries, List<Fil.Point2D> outPoints, List<int> outIndices )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPointSet | System.Collections.Generic.List<Fil.Point2D> | Points that will be searched. | ||
![]() | inQueries | System.Collections.Generic.List<Fil.Point2D> | |||
![]() | outPoints | System.Collections.Generic.List<Fil.Point2D> | For each point in inQueries, the closest point value from inPointSet. | ||
![]() | outIndices | System.Collections.Generic.List<int> | For each point in inQueries, the closest point index of inPointSet. |