Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / EllipticalArc Class / EllipticalArc Constructor / EllipticalArc Constructor(Double,Double,Double,Double,Double,Double,Double)
Center's X coordinate
Center's Y coordinate
Center's Z coordinate
Radius X
Radius Y
Start parameter
End parameter

In This Topic
    EllipticalArc Constructor(Double,Double,Double,Double,Double,Double,Double)
    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 startParameter As Double, _
       ByVal endParameter As Double _
    )
    public EllipticalArc( 
       double x,
       double y,
       double z,
       double rx,
       double ry,
       double startParameter,
       double endParameter
    )

    Parameters

    x
    Center's X coordinate
    y
    Center's Y coordinate
    z
    Center's Z coordinate
    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