Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-12-21 08:14:08 -08:00
parent 54d2ea373f
commit 6e170684d5
55 changed files with 802 additions and 797 deletions

View File

@ -21,19 +21,15 @@ class line(BaseModel):
class arc(BaseModel):
"""A circular arc segment."""
angle_end: float
angle_start: float
center: Point2d
end: Optional[Angle] = None
end: Angle
radius: float
relative: bool
start: Optional[Angle] = None
start: Angle
type: Literal["arc"] = "arc"