Source code for kittycad.models.bounding_box

from ..models.point3d import Point3d
from .base import KittyCadBaseModel


[docs] class BoundingBox(KittyCadBaseModel): """The response from the 'BoundingBox'.""" center: Point3d dimensions: Point3d