Search
Utilities.LineIntersect Method (Point, Point, Point, Point)
See Also
 






Finds the intersection point of the lines defined by the specified point pairs.

Namespace: MindFusion
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public static Point LineIntersect (
    Point m1,
    Point m2,
    Point n1,
    Point n2
)

Visual Basic  Copy Code

Public Shared Function LineIntersect( _
    m1 As Point, _
    m2 As Point, _
    n1 As Point, _
    n2 As Point _
) As Point

 Parameters

m1

m2

n1

n2

 Return Value

The intersection point of the specified lines or Point(float.MinValue, float.MinValue) if the lines do not intersect.

 See Also