bitbybit.dev v1.0.0-rc.1
    Preparing search index...

    Interface LabelInfo

    interface LabelInfo {
        label: string;
        name: string;
        type: string;
        isSimpleShape: boolean;
        isAssembly: boolean;
        isReference: boolean;
        isComponent: boolean;
        isFreeShape: boolean;
        refLabel?: string;
        children?: string[];
        shapeType?: string;
    }
    Index

    Properties

    label: string

    Label entry string

    name: string

    Name attribute

    type: string

    Type: "part", "assembly", "instance", or "unknown"

    isSimpleShape: boolean

    Whether it's a simple shape (not compound/assembly)

    isAssembly: boolean

    Whether it's an assembly

    isReference: boolean

    Whether it's a reference/instance

    isComponent: boolean

    Whether it's a component in an assembly

    isFreeShape: boolean

    Whether it's a free shape (top-level)

    refLabel?: string

    Reference label (for instances)

    children?: string[]

    Child labels (for assemblies)

    shapeType?: string

    Shape type (vertex, edge, wire, face, shell, solid, compound, etc.)