14 lines
244 B
Python
14 lines
244 B
Python
|
|
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
|