-
Notifications
You must be signed in to change notification settings - Fork 0
CircularArc
Namespace: AlibreScript.API | Kind: Class
The CircularArc class provides functionality for creating and manipulating circular arc geometry within 2D sketches.
- CircularArc3D - 3D circular arcs
- CircularArc.ArcType - Arc type definitions
- Circle - Full circular geometry
- Sketch - Contains arc geometry
- EllipticalArc - Elliptical arc geometry
- Properties - Arc properties and dimensions
- Methods - Available operations
Type: Object
Angle of arc
Type: Object
The center of the arc [x, y]
Type: Object
The center point as a sketchpoint object
Type: Object
The end point as a sketchpoint object
Type: Object
The end point of the arc [x, y]
Type: Object
True if the arc is a reference arc, false if it is a regular arc
Type: Object
Radius of arc
Type: Object
The start point as a sketchpoint object
Type: Object
The start point of the arc [x, y]
Type: Object
Type of arc
Creates an arc using the center, start point and end point
Overload 1:
def CircularArc(center, start, end, is_reference):
"""
Creates an arc using the center, start point and end point
Args:
center (list): Center of the arc
start (list): Start point of the arc
end (list): End point of the arc
is_reference (bool): True to create a reference arc, false to create a regular arc
"""Overload 2:
def CircularArc(center, start, angle, is_reference):
"""
Creates an arc using the center, start point and an angle
Args:
center (list): Location of center of arc
start (list): Location of start of arc
angle (float): Angle of arc
is_reference (bool): True if a reference arc, false if a regular arc
"""Documentation Home | Classes | Methods Index | Properties Index | Members Index
Generated on 2025-09-23 02:06