UNPKG

@kitware/vtk.js

Version:

Visualization Toolkit for the Web

41 lines (34 loc) 1.34 kB
import { m as macro } from '../../../macros2.js'; function widgetBehavior(publicAPI, model) { model.classHierarchy.push('vtkInteractiveOrientationWidgetProp'); macro.event(publicAPI, model, 'OrientationChange'); // -------------------------------------------------------------------------- // Right click: Delete handle // -------------------------------------------------------------------------- publicAPI.handleRightButtonPress = e => { if (!model.activeState || !model.activeState.getActive() || !model.pickable) { return macro.VOID; } publicAPI.invokeOrientationChange({ action: 'rightPress', event: e, ...model.activeState.get('up', 'right', 'direction') }); return macro.EVENT_ABORT; }; // -------------------------------------------------------------------------- // Left press: Select handle to drag // -------------------------------------------------------------------------- publicAPI.handleLeftButtonPress = e => { if (!model.activeState || !model.activeState.getActive() || !model.pickable) { return macro.VOID; } publicAPI.invokeOrientationChange({ action: 'leftPress', event: e, ...model.activeState.get('up', 'right', 'direction') }); return macro.EVENT_ABORT; }; } export { widgetBehavior as default };