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 Point2D GetIntersection(
	Point2D pt1L1,
	Point2D pt2L1,
	Point2D pt1L2,
	Point2D pt2L2
)
Visual Basic (Declaration)
Public Shared Function GetIntersection ( _
	pt1L1 As Point2D, _
	pt2L1 As Point2D, _
	pt1L2 As Point2D, _
	pt2L2 As Point2D _
) As Point2D
Visual C++
public:
static Point2D GetIntersection(
	Point2D pt1L1, 
	Point2D pt2L1, 
	Point2D pt1L2, 
	Point2D pt2L2
)

Parameters

pt1L1
Type: Hyleos.Common.Geometry..::.Point2D
Point on line 1
pt2L1
Type: Hyleos.Common.Geometry..::.Point2D
Point on line 1
pt1L2
Type: Hyleos.Common.Geometry..::.Point2D
Point on line 2
pt2L2
Type: Hyleos.Common.Geometry..::.Point2D
Point on line 2

Return Value

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

See Also