Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / EllipticalArc Class / EllipticalArc Constructor / EllipticalArc Constructor(Double,Double,Double,Double,Double,Double,Double,Boolean)
Center's X coordinate
Center's Y coordinate
Center's Z coordinate
Radius X
Radius Y
Start angle in radians
End angle in radians
When True the two previous parameters represent angles from the X-axis, otherwise they represent parameters on the ellipse.

In This Topic
    EllipticalArc Constructor(Double,Double,Double,Double,Double,Double,Double,Boolean)
    In This Topic
    Arc parallel to XY plane constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal z As Double, _
       ByVal rx As Double, _
       ByVal ry As Double, _
       ByVal startAngleInRadians As Double, _
       ByVal endAngleInRadians As Double, _
       ByVal polarAngles As Boolean _
    )
    public EllipticalArc( 
       double x,
       double y,
       double z,
       double rx,
       double ry,
       double startAngleInRadians,
       double endAngleInRadians,
       bool polarAngles
    )

    Parameters

    x
    Center's X coordinate
    y
    Center's Y coordinate
    z
    Center's Z coordinate
    rx
    Radius X
    ry
    Radius Y
    startAngleInRadians
    Start angle in radians
    endAngleInRadians
    End angle in radians
    polarAngles
    When True the two previous parameters represent angles from the X-axis, otherwise they represent parameters on the ellipse.
    Remarks
    The parameter t on an ellipse is not the angle of (X(t),Y(t)) with the X-axis, even if also t is in [0, 2*PI].
    See Also