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

In This Topic
    Arc 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 radius As Double, _
       ByVal startAngleInRadians As Double, _
       ByVal endAngleInRadians As Double _
    )
    public Arc( 
       Plane arcPlane,
       Point3D center,
       double radius,
       double startAngleInRadians,
       double endAngleInRadians
    )

    Parameters

    arcPlane
    Plane
    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