CreateArc
Creates an arc from an aligned point, radius, and angle range.
Syntax
C++
Python
def CreateArc( inPoint: Point2D, inRadius: float, inStartAngle: float, inSweepAngle: float, /, *, inPointAnchor: Anchor2D = Anchor2D.MiddleCenter ) -> outArc: Arc2D
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inPoint | Point2D | |||
![]() |
inPointAnchor | Anchor2D | Anchor2D.MiddleCenter | Alignment of the point relatively to the box of the circle | |
![]() |
inRadius | float | 0.0 - ![]() |
Circle radius | |
![]() |
inStartAngle | float | Direction at which the arc begins | ||
![]() |
inSweepAngle | float | Length of the arc (may be negative) | ||
![]() |
outArc | Arc2D |



