Interface IModelMaterialsValue

    interface IModelMaterialsValue {
        geometry: string;
        material: {
            children: {
                label: string;
                symbol: string;
                unit?: IUnit;
                value: string | number;
            }[];
            label: string;
        };
        selected: {
            label: number;
            uuid: string;
        }[];
        uuid: string;
    }

    Properties

    geometry: string
    material: {
        children: {
            label: string;
            symbol: string;
            unit?: IUnit;
            value: string | number;
        }[];
        label: string;
    }

    Type declaration

    • children: {
          label: string;
          symbol: string;
          unit?: IUnit;
          value: string | number;
      }[]
    • label: string
    selected: {
        label: number;
        uuid: string;
    }[]

    Type declaration

    • label: number
    • uuid: string
    uuid: string

    Generated using TypeDoc and TypeDoc Airthium Plugin