FLineIsPointNearPoint Method

Return a value indicating whether one point is near another.

Definition

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

Parameters

point1  FVector2
Reference to the first point to compare.
point2  FVector2
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