Files
kittycad.py/kittycad/models/center_of_mass.py

14 lines
244 B
Python
Raw Normal View History

from pydantic import BaseModel
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