Bitbybit Docs
    Preparing search index...

    Type Alias 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

    Properties

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