Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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: IntPoint
Returns a point, which is the furthest away from the referencePoint.
See Also