Search
Line.IntersectSegment Method (Line)
See Also
 






Calculates the intersection point with the particular line segment. If there is no intersection, the return value is an infinite point.

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

 Syntax

C#  Copy Code

public PointF IntersectSegment (
    Line line
)

Visual Basic  Copy Code

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

 Parameters

line
The Line object defining the segment to intersect the current line with.

 Return Value

A PointF object representing the intersection point.

 See Also