Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / EllipticalArc Class / EllipticalArc Constructor / EllipticalArc Constructor(Point3D,Double,Double,Double,Double)
3D center point
Radius X
Radius Y
Start parameter
End parameter

In This Topic
    EllipticalArc Constructor(Point3D,Double,Double,Double,Double)
    In This Topic
    Arc parallel to XY plane constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal center As Point3D, _
       ByVal rx As Double, _
       ByVal ry As Double, _
       ByVal startParameter As Double, _
       ByVal endParameter As Double _
    )
    public EllipticalArc( 
       Point3D center,
       double rx,
       double ry,
       double startParameter,
       double endParameter
    )

    Parameters

    center
    3D center point
    rx
    Radius X
    ry
    Radius Y
    startParameter
    Start parameter
    endParameter
    End parameter
    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