Click or drag to resize

GdiExtensionMethodsIsPointIntoDistance(PointF, Double, IEnumerablePointF) Method

Determines whether or not a given point is into a certain distance of a polyline.

Namespace: Altaxo.Graph.Gdi
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool IsPointIntoDistance(
	PointF point,
	double distance,
	IEnumerable<PointF> polyline
)

Parameters

point  PointF
The point.
distance  Double
The distance.
polyline  IEnumerablePointF
The polyline.

Return Value

Boolean
true if the distance between point and polyline is less than or equal to the specified distance; otherwise, false.
See Also