You are here: Start » FIL.NET » FIS.FindClosestPoints Method

FIS.FindClosestPoints Method

For each given point, finds the closest point among the given point set.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void FindClosestPoints
(
	IList<FilNet.Point2D> inPointSet,
	IList<FilNet.Point2D> inQueries,
	IList<FilNet.Point2D> outPoints,
	IList<int> outIndices
)

Parameters

Name Type Range Default Description
inPointSetSystem.Collections.Generic.IList<FilNet.Point2D>Points that will be searched.
inQueriesSystem.Collections.Generic.IList<FilNet.Point2D>
outPointsSystem.Collections.Generic.IList<FilNet.Point2D>For each point in inQueries, the closest point value from inPointSet.
outIndicesSystem.Collections.Generic.IList<int>For each point in inQueries, the closest point index of inPointSet.

See also