Interface SectionBoxAdapter

interface SectionBoxAdapter {
    getBox: () => Box3;
    getSceneBox: () => Promise<Box3>;
    getSelectionBox: () => Promise<Box3>;
    onSelectionChanged: ISignal;
    setBox: (box: Box3) => void;
    setClip: (b: boolean) => void;
    setVisible: (visible: boolean) => void;
}

Properties

getBox: () => Box3
getSceneBox: () => Promise<Box3>
getSelectionBox: () => Promise<Box3>
onSelectionChanged: ISignal
setBox: (box: Box3) => void
setClip: (b: boolean) => void
setVisible: (visible: boolean) => void