Create a circle in a sketch. The circle segment always has a starting point and sweeps counterclockwise from it.
The starting point is currently free to float around the circumference of the circle.
So if you want to fully constrain the circle, you'll need to fix the start point
to somewhere along the circumference. We suggest adding vertical([myCircle.start, myCircle.center])
or horizontal([myCircle.start, myCircle.center]).
Arguments
| Name | Type | Description | Required |
|---|---|---|---|
start | Point2d | A point on the circle that sets where the circle starts. | Yes |
center | Point2d | The center of the circle. | Yes |
construction | bool | Whether this segment is construction geometry rather than part of the modeled profile. | No |
Returns
Segment - A segment in a sketch created in a sketch block. It may be a line, arc, point, or other segment type.