Files
kittycad.py/kittycad/models/center_of_mass.py
Jess Frazelle 2b44cdfb96 updates
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-07-28 15:21:51 -07:00

16 lines
312 B
Python

from pydantic import BaseModel, ConfigDict
from ..models.point3d import Point3d
from ..models.unit_length import UnitLength
class CenterOfMass(BaseModel):
"""The center of mass response."""
center_of_mass: Point3d
output_unit: UnitLength
model_config = ConfigDict(protected_namespaces=())