Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / EllipticalArc Class / EllipticalArc Constructor / EllipticalArc Constructor(Plane,Point3D,Double,Double,Double)
Plane
3D center point
Radius X
Radius Y
Span parameter will be [0, endParameter]

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

    Parameters

    arcPlane
    Plane
    center
    3D center point
    rx
    Radius X
    ry
    Radius Y
    endParameter
    Span parameter will be [0, endParameter]
    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