Bitbybit Docs
    Bereite Suchindex vor...

    Typenalias BoundingBox (Inputs.Base)

    The axis-aligned box enclosing a shape, as a min and a max corner, with the center and the width, height and length filled in as a convenience. Use it to size a camera to a model, to lay objects out without overlap, or to check a part fits a build volume.

    type BoundingBox = {
        min: Point3;
        max: Point3;
        center?: Point3;
        width?: number;
        height?: number;
        length?: number;
    }
    Index

    Eigenschaften

    min: Point3
    max: Point3
    center?: Point3
    width?: number
    height?: number
    length?: number