|
![]() |
Renders a 3D arc.
Namespace: Autodesk.Navisworks.Api
Assembly: Autodesk.Navisworks.Api (in Autodesk.Navisworks.Api.dll)
Syntax
Visual Basic |
---|
Public Sub Arc ( _ center As Point3D, _ start As Point3D, _ end As Point3D, _ normal As Vector3D, _ filled As Boolean _ ) |
C# |
---|
public void Arc( Point3D center, Point3D start, Point3D end, Vector3D normal, bool filled ) |
Visual C++ |
---|
public: void Arc( Point3D^ center, Point3D^ start, Point3D^ end, Vector3D^ normal, bool filled ) |
Parameters
- center
- Type: Autodesk.Navisworks.Api..::..Point3D
Center point of the arc.
- start
- Type: Autodesk.Navisworks.Api..::..Point3D
Start point of the arc.
- end
- Type: Autodesk.Navisworks.Api..::..Point3D
End point of the arc.
- normal
- Type: Autodesk.Navisworks.Api..::..Vector3D
Normal for arc.
- filled
- Type: System..::..Boolean
Should the arc be filled in or an outline.
Exceptions
Exception | Condition |
---|---|
System..::..ObjectDisposedException | Object has been Disposed |
System..::..NotSupportedException | Object is Read-Only |
System..::..ArgumentNullException | Argument 'center' is null |
System..::..ArgumentException | Argument 'center' has been Disposed |
System..::..ArgumentNullException | Argument 'start' is null |
System..::..ArgumentException | Argument 'start' has been Disposed |
System..::..ArgumentNullException | Argument 'end' is null |
System..::..ArgumentException | Argument 'end' has been Disposed |
System..::..ArgumentNullException | Argument 'normal' is null |
System..::..ArgumentException | Argument 'normal' has been Disposed |