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


In This Topic
    AddEllipticalArc(Single,Single,Single,Single,Single,Single,Single,Single) Method
    In This Topic
    Adds an elliptical arc to the path
    Syntax
    'Declaration
     
    
    Public Overloads Sub AddEllipticalArc( _
       ByVal startX As System.Single, _
       ByVal startY As System.Single, _
       ByVal controlX As System.Single, _
       ByVal controlY As System.Single, _
       ByVal endX As System.Single, _
       ByVal endY As System.Single, _
       ByVal angle As System.Single, _
       ByVal ratio As System.Single _
    ) 
    'Usage
     
    
    Dim instance As NPath
    Dim startX As System.Single
    Dim startY As System.Single
    Dim controlX As System.Single
    Dim controlY As System.Single
    Dim endX As System.Single
    Dim endY As System.Single
    Dim angle As System.Single
    Dim ratio As System.Single
     
    instance.AddEllipticalArc(startX, startY, controlX, controlY, endX, endY, angle, ratio)
    public void AddEllipticalArc( 
       System.float startX,
       System.float startY,
       System.float controlX,
       System.float controlY,
       System.float endX,
       System.float endY,
       System.float angle,
       System.float ratio
    )

    Parameters

    startX
    arc start x coordinate
    startY
    arc start y coordinate
    controlX
    arc control x coordinate
    controlY
    arc control y coordinate
    endX
    arc end x coordinate
    endY
    arc end y coordinate
    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