FLineIsPointNearLine Method

Return a value indicating whether the caller's point is near the specified line, within the given resolution.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static bool IsPointNearLine(
	FLine line,
	FPoint point,
	float resolution
)

Parameters

line  FLine
Reference to the line to test for proximity.
point  FPoint
Reference to the point to test for proximity.
resolution  Single
The maximum distance at which the point would be considered to be near the line.

Return Value

Boolean
True if the given point is within resolution distance the specified line. Otherwise, false.

See Also