Interface SectionPlanesPanelParams

interface SectionPlanesPanelParams {
    container?: HTMLElement;
    storageKey?: string;
    view: View;
    visible?: boolean;
}

Properties

container?: HTMLElement

DOM container; defaults to document.body.

storageKey?: string

localStorage key for persisting drag position + closed state. Defaults to "xkt-sp-panel".

view: View

View whose section planes are listed. Doubles as the WeakMap key for SectionPlanesPanel.openFor idempotence — one Section Planes panel per View.

visible?: boolean

Show on construction (default true).