Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Arc Class / Arc Constructor / Arc Constructor(Double,Double,Double,Double,Double,Double)
Center's X coordinate
Center's Y coordinate
Center's Z coordinate
Radius
Start angle in radians
End angle in radians

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

    Parameters

    x
    Center's X coordinate
    y
    Center's Y coordinate
    z
    Center's Z coordinate
    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