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

    A loader turns source bytes of one kind into the neutral ModelScene (DD-018 §4.1).

    interface ModelLoader {
        kind: string;
        parse(
            bytes: Uint8Array,
            limits?: ModelLimits,
            opts?: ModelLoadOptions,
        ): ModelScene | Promise<ModelScene>;
    }
    Index

    Properties

    Methods

    Properties

    kind: string

    'stl' | '3mf' | (future) 'obj' | 'step' | 'ply' | … — an open string, not a closed union.

    Methods