Nevron .NET Vision
Nevron.GraphicsCore Namespace / NLineF Structure / IntersectWith Method / IntersectWith(NCircleF,NPointFList) Method
The circle to check for intersection with.
The resulting intersection points (valid only if the method returned true).


In This Topic
    IntersectWith(NCircleF,NPointFList) Method
    In This Topic
    Check if this line intersects the specified circle and returns the intersection points if it does.
    Syntax
    'Declaration
     
    
    Public Overloads Function IntersectWith( _
       ByVal circle As NCircleF, _
       ByRef intersectionPoints As NPointFList _
    ) As System.Boolean
    'Usage
     
    
    Dim instance As NLineF
    Dim circle As NCircleF
    Dim intersectionPoints As NPointFList
    Dim value As System.Boolean
     
    value = instance.IntersectWith(circle, intersectionPoints)
    public System.bool IntersectWith( 
       NCircleF circle,
       out NPointFList intersectionPoints
    )

    Parameters

    circle
    The circle to check for intersection with.
    intersectionPoints
    The resulting intersection points (valid only if the method returned true).

    Return Value

    True if this line intersects with the circle, 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