FLineIsPointNearPoint Method

Return a value indicating whether one point is near another.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static bool IsPointNearPoint(
	FPoint point1,
	FPoint point2,
	float resolution
)

Parameters

point1  FPoint
Reference to the first point to compare.
point2  FPoint
Reference to the second point to compare.
resolution  Single
The scope of resolution that determines nearness.

Return Value

Boolean
True if the points are within the specified distance from one another to be considered as near. Otherwise, false.

See Also