Search
Line.IntersectLine Method (PointF, PointF)
See Also
 






Calculates the intersection point with the line defined by the particular points. If there is no intersection, the returned value is an infinite point.

Namespace: MindFusion.Geometry.Geometry2D
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public PointF IntersectLine (
    PointF a,
    PointF b
)

Visual Basic  Copy Code

Public Function IntersectLine( _
    a As PointF, _
    b As PointF _
) As PointF

 Parameters

a
The first point defining the line to intersect with.
b
The second point defining the line to intersect with.

 Return Value

A PointF object representing the intersection point.

 See Also