Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Arc Class / Arc Constructor / Arc Constructor(Plane,Point2D,Double,Double,Double)
Plane
2D center point
Radius
Start angle in radians
End angle in radians

In This Topic
    Arc Constructor(Plane,Point2D,Double,Double,Double)
    In This Topic
    Plane, center, radius and angles constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal arcPlane As Plane, _
       ByVal center As Point2D, _
       ByVal radius As Double, _
       ByVal startAngleInRadians As Double, _
       ByVal endAngleInRadians As Double _
    )
    public Arc( 
       Plane arcPlane,
       Point2D center,
       double radius,
       double startAngleInRadians,
       double endAngleInRadians
    )

    Parameters

    arcPlane
    Plane
    center
    2D center point
    radius
    Radius
    startAngleInRadians
    Start angle in radians
    endAngleInRadians
    End angle in radians
    Remarks
    Angles can be negative. StartAngle must be smaller than EndAngle.
    See Also