Get intersection of two lines using Cramer's rule

Namespace:  Hyleos.Common.Geometry
Assembly:  Hyleos.Common (in Hyleos.Common.dll) Version: 1.0.3.2 (1.0.3.2)

Syntax

C#
public static PointF GetIntersection(
	PointF pt1L1,
	PointF pt2L1,
	PointF pt1L2,
	PointF pt2L2
)
Visual Basic (Declaration)
Public Shared Function GetIntersection ( _
	pt1L1 As PointF, _
	pt2L1 As PointF, _
	pt1L2 As PointF, _
	pt2L2 As PointF _
) As PointF
Visual C++
public:
static PointF GetIntersection(
	PointF pt1L1, 
	PointF pt2L1, 
	PointF pt1L2, 
	PointF pt2L2
)

Parameters

pt1L1
Type: System.Drawing..::.PointF
Point on line 1
pt2L1
Type: System.Drawing..::.PointF
Point on line 1
pt1L2
Type: System.Drawing..::.PointF
Point on line 2
pt2L2
Type: System.Drawing..::.PointF
Point on line 2

Return Value

[Missing <returns> documentation for "M:Hyleos.Common.Geometry.Geometry.GetIntersection(System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)"]

See Also