G-code Preview — API Reference
    Preparing search index...

    Build-plate surface (#185): a filled shaded plate instead of only the bare wireframe grid. Generic and self-drawn — no bundled vendor plate textures (trademark/copyright + bloat). A consumer may drape their own image via texture.

    interface BedSurface {
        color?: ThemeColor;
        mode: "none" | "solid";
        opacity?: number;
        texture?: BedTextureSource;
    }
    Index

    Properties

    color?: ThemeColor

    Plate color (default a muted dark slate).

    mode: "none" | "solid"

    'none' = grid only (today's look); 'solid' = a filled plate under the toolpath.

    opacity?: number

    Plate opacity in [0,1] (default 1).

    Consumer image drawn on the plate (preloaded bitmap/canvas — never a URL).