Nevron .NET Vision
Nevron.GraphicsCore Namespace / NLineF Structure / IntersectWith Method / IntersectWith(NLineF,NPointF) Method
The line to to check for intersetion with.
The resulting intersection point, if the lines intersect.


In This Topic
    IntersectWith(NLineF,NPointF) Method
    In This Topic
    Checks if this line inthersects the given line and returns the intersection point as an out parameter if it does.
    Syntax
    'Declaration
     
    
    Public Overloads Function IntersectWith( _
       ByVal line As NLineF, _
       ByRef result As NPointF _
    ) As System.Boolean
    'Usage
     
    
    Dim instance As NLineF
    Dim line As NLineF
    Dim result As NPointF
    Dim value As System.Boolean
     
    value = instance.IntersectWith(line, result)
    public System.bool IntersectWith( 
       NLineF line,
       out NPointF result
    )

    Parameters

    line
    The line to to check for intersetion with.
    result
    The resulting intersection point, if the lines intersect.

    Return Value

    True if lines intersect, otherwise false.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also