Click or drag to resize

LineD2DIntersection Method

Calculates the intersection point of two lines.

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static PointD2D? Intersection(
	LineD2D l0,
	LineD2D l1
)

Parameters

l0  LineD2D
First line.
l1  LineD2D
Second line.

Return Value

NullablePointD2D
The intersection point of the two lines, or null if no intersection point exists (lines are parallel).
See Also