SlopeInterceptItemIntersect Method

Calculate an intersection between the two lines and return the result as a point.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2820.4317
C#
public static FVector2 Intersect(
	SlopeInterceptItem lineA,
	SlopeInterceptItem lineB
)

Parameters

lineA  SlopeInterceptItem
Reference to the first line to intersect.
lineB  SlopeInterceptItem
Reference to the second line to intersect.

Return Value

FVector2
Reference to a double point indicating where the caller's lines intersected, if an intersection was found. Otherwise, null.

See Also