Files
kittycad.py/kittycad/models/curve_get_end_points.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

13 lines
177 B
Python

from pydantic import BaseModel
from ..models.point3d import Point3d
class CurveGetEndPoints(BaseModel):
"""Endpoints of a curve"""
end: Point3d
start: Point3d