Search
Line.IntersectLine Method (Line)
See Also
 






Calculates the intersection point with the specified line. 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 (
    Line line
)

Visual Basic  Copy Code

Public Function IntersectLine ( _
    line As Line _
) As PointF

 Parameters

line

The Line object to intersect the current line with.

 Return Value

A PointF object representing the intersection point.

 See Also