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

In This Topic
    EllipticalArc Constructor(Plane,Point2D,Double,Double,Double,Double)
    In This Topic
    Sketch plane constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal arcPlane As Plane, _
       ByVal center As Point2D, _
       ByVal rx As Double, _
       ByVal ry As Double, _
       ByVal startParameter As Double, _
       ByVal endParameter As Double _
    )
    public EllipticalArc( 
       Plane arcPlane,
       Point2D center,
       double rx,
       double ry,
       double startParameter,
       double endParameter
    )

    Parameters

    arcPlane
    Plane
    center
    2D 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