interface CanonicalMeshBase {
    geometry:
        | string
        | ArrayBuffer
        | GeometryObject
        | (() => GeometryObject | Promise<GeometryObject>);
    localID: number;
    model: Model;
    temporary?: boolean;
    type: BUFFER_GEOMETRY;
}

Hierarchy (view full)

Properties

geometry:
    | string
    | ArrayBuffer
    | GeometryObject
    | (() => GeometryObject | Promise<GeometryObject>)
localID: number
model: Model
temporary?: boolean

This is true if this is not final geometry, some geometry is only kept for intermediate calculation purposes, and is removed, if it is not final.