brepjs API Reference
    Preparing search index...

    Interface ShapeHandle

    A shape wrapper with Symbol.dispose for auto-cleanup.

    interface ShapeHandle {
        disposed: boolean;
        wrapped: TopoDS_Shape;
        "[dispose]"(): void;
        delete(): void;
    }
    Index

    Properties

    Methods

    Properties

    disposed: boolean

    Check if this handle has been disposed

    wrapped: TopoDS_Shape

    The raw OCCT shape handle

    Methods

    • Alias for Symbol.dispose — required for localGC / Deletable compatibility.

      Returns void