Bugfix: arc paths were stored as straight line paths (#4310)

Problem 1 of https://github.com/KittyCAD/modeling-app/issues/4297
This commit is contained in:
Adam Chalmers
2024-10-25 17:49:30 -05:00
committed by GitHub
parent 4925251c29
commit 39d76ed54f
7 changed files with 9375 additions and 9 deletions

View File

@ -162,6 +162,28 @@ A base path.
----
A circular arc, not necessarily tangential to the current point.
**Type:** `object`
## Properties
| Property | Type | Description | Required |
|----------|------|-------------|----------|
| `type` |enum: `Arc`| | No |
| `center` |`[number, number]`| Center of the circle that this arc is drawn on. | No |
| `radius` |`number`| Radius of the circle that this arc is drawn on. | No |
| `from` |`[number, number]`| The from point. | No |
| `to` |`[number, number]`| The to point. | No |
| `tag` |[`TagDeclarator`](/docs/kcl/types#tag-declaration)| The tag of the path. | No |
| `__geoMeta` |[`GeoMeta`](/docs/kcl/types/GeoMeta)| Metadata. | No |
----