Method that creates a new sketch arc defined by a center point and two points defining the start and end. Method that creates a new sketch arc defined by a center point and two points defining the start and end.
Name | Type | Description |
CenterPoint | Object | Input object that defines the center point. This can currently only be a Point object. |
StartPoint | Object | Input object that defines the start point. This can be either a SketchPoint3D or Point object. In the case where a SketchPoint3D object is input, the start point of the arc will be attached to the sketch point. |
EndPoint | Object | Input object that defines the end point. This can be either a SketchPoint3D or Point object. In the case where a SketchPoint3D object is input and the point lies on the arc, the end point of the arc will be attached to the sketch point. |
Normal | Variant | Optional input UnitVector that defines the normal direction for the arc. This is only required when the start, center and end points are collinear (i.e. the arc is a semi-circle). In other cases, the normal need not be provided, but if it is, it needs to be consistent with the input points. This is an optional argument whose default value is null. |
CounterClockwise | Boolean | Optional input Boolean that defines whether the arc sweeps in a clockwise or counterclockwise direction between the start and end points. The default value is True which indicates a counterclockwise sweep direction. This is an optional argument whose default value is False. |