Nevron .NET Vision
Nevron.GraphicsCore Namespace / NPath Class / AddEllipticalArc Method / AddEllipticalArc(NPointF,NPointF,NPointF,Single,Single) Method
arc start point
arc control point
arc end point
angle of the ellipse major axis and the X axis (in radians)
ratio between the ellipse major and minor axes


In This Topic
    AddEllipticalArc(NPointF,NPointF,NPointF,Single,Single) Method
    In This Topic
    Adds an elliptical arc to the path
    Syntax
    'Declaration
     
    
    Public Overloads Sub AddEllipticalArc( _
       ByVal start As NPointF, _
       ByVal control As NPointF, _
       ByVal end As NPointF, _
       ByVal angle As System.Single, _
       ByVal ratio As System.Single _
    ) 
    'Usage
     
    
    Dim instance As NPath
    Dim start As NPointF
    Dim control As NPointF
    Dim end As NPointF
    Dim angle As System.Single
    Dim ratio As System.Single
     
    instance.AddEllipticalArc(start, control, end, angle, ratio)
    public void AddEllipticalArc( 
       NPointF start,
       NPointF control,
       NPointF end,
       System.float angle,
       System.float ratio
    )

    Parameters

    start
    arc start point
    control
    arc control point
    end
    arc end point
    angle
    angle of the ellipse major axis and the X axis (in radians)
    ratio
    ratio between the ellipse major and minor axes
    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