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.2414.4032
C#
public static FPoint 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

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

See Also