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

In This Topic
    Arc Constructor(Point3D,Double,Double,Double)
    In This Topic
    Arc parallel to XY plane constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal center As Point3D, _
       ByVal radius As Double, _
       ByVal startAngleInRadians As Double, _
       ByVal endAngleInRadians As Double _
    )
    public Arc( 
       Point3D center,
       double radius,
       double startAngleInRadians,
       double endAngleInRadians
    )

    Parameters

    center
    3D 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