Update api spec (#217)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2024-05-02 14:03:09 -07:00
committed by GitHub
parent b3eeaef41d
commit cc0bb86a53
3 changed files with 750 additions and 750 deletions

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,7 @@ class line(BaseModel):
class arc(BaseModel):
"""A circular arc segment."""
"""A circular arc segment. Arcs can be drawn clockwise when start > end."""
center: Point2d
@ -68,7 +68,7 @@ class tangential_arc(BaseModel):
class tangential_arc_to(BaseModel):
"""Adds a tangent arc from current pen position to the new position."""
"""Adds a tangent arc from current pen position to the new position. Arcs will choose a clockwise or counter-clockwise direction based on the arc end position."""
angle_snap_increment: Optional[Angle] = None

View File

@ -23374,7 +23374,7 @@
]
},
{
"description": "A circular arc segment.",
"description": "A circular arc segment. Arcs can be drawn clockwise when start > end.",
"type": "object",
"properties": {
"center": {
@ -23481,7 +23481,7 @@
"type": "object",
"properties": {
"offset": {
"description": "Offset of the arc.",
"description": "Offset of the arc. Negative values will arc clockwise.",
"allOf": [
{
"$ref": "#/components/schemas/Angle"
@ -23510,7 +23510,7 @@
]
},
{
"description": "Adds a tangent arc from current pen position to the new position.",
"description": "Adds a tangent arc from current pen position to the new position. Arcs will choose a clockwise or counter-clockwise direction based on the arc end position.",
"type": "object",
"properties": {
"angle_snap_increment": {