Nevron .NET Vision
Nevron.GraphicsCore Namespace / NPolygonF Class / ScanlineCrossingCounts Method
The point the scanline passes through,
Resulting number of clockwise intersections.
Resulting number of counterclockwise intersections.


In This Topic
    ScanlineCrossingCounts Method
    In This Topic
    Obtains the number of clockwise and counterwise crossings of a scanline with the polygon segments.
    Syntax
    'Declaration
     
    
    Public Sub ScanlineCrossingCounts( _
       ByVal point As NPointF, _
       ByRef clockwise As System.Integer, _
       ByRef counterwise As System.Integer _
    ) 
    'Usage
     
    
    Dim instance As NPolygonF
    Dim point As NPointF
    Dim clockwise As System.Integer
    Dim counterwise As System.Integer
     
    instance.ScanlineCrossingCounts(point, clockwise, counterwise)
    public void ScanlineCrossingCounts( 
       NPointF point,
       out System.int clockwise,
       out System.int counterwise
    )

    Parameters

    point
    The point the scanline passes through,
    clockwise
    Resulting number of clockwise intersections.
    counterwise
    Resulting number of counterclockwise intersections.
    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