interface SelectableModel {
    isSelectable: true;
    _clearSelection(): void;
    _setSelection(ids): void;
    areaPick(caster, containedOnly?): Promise<IIntersection>;
    pick(caster): Promise<IIntersection>;
}

Hierarchy (view full)

Properties

isSelectable: true

Methods