Skip to content

BoundingDimensions

Bases: BaseModel

Represents the bounding dimensions of a component.

PARAMETER DESCRIPTION
enclosing_cuboid

The enclosing cuboid of the component.

TYPE: GeometryCuboid | None DEFAULT: None

enclosing_cylinder

The enclosing cylinder of the component.

TYPE: GeometryCylinder | None DEFAULT: None

Source code in werk24/models/v2/models.py
class BoundingDimensions(BaseModel):
    """
    Represents the bounding dimensions of a component.
    """

    enclosing_cuboid: Optional[GeometryCuboid] = Field(
        None,
        description="The enclosing cuboid of the component.",
    )
    enclosing_cylinder: Optional[GeometryCylinder] = Field(
        None,
        description="The enclosing cylinder of the component.",
    )