|
PointsCloudGetFurthestPoint Method
|
Find furthest point from the specified point.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static IntPoint GetFurthestPoint(
IEnumerable<IntPoint> cloud,
IntPoint referencePoint
)
Public Shared Function GetFurthestPoint (
cloud As IEnumerable(Of IntPoint),
referencePoint As IntPoint
) As IntPoint
Request Example
View SourceParameters
- cloud
- Type: System.Collections.GenericIEnumerableIntPoint
Collection of points to search furthest point in. - referencePoint
- Type: AccordIntPoint
The point to search furthest point from.
Return Value
Type:
IntPointReturns a point, which is the furthest away from the
referencePoint.
See Also