13 lines
177 B
Python
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
|