@kitware/vtk.js
Version:
Visualization Toolkit for the Web
93 lines (76 loc) • 3.29 kB
JavaScript
import { m as macro } from '../../macros2.js';
import vtkAbstractWidgetFactory from '../Core/AbstractWidgetFactory.js';
import vtkPlaneManipulator from '../Manipulators/PlaneManipulator.js';
import vtkPolyLineRepresentation from '../Representations/PolyLineRepresentation.js';
import vtkSphereHandleRepresentation from '../Representations/SphereHandleRepresentation.js';
import widgetBehavior from './PolyLineWidget/behavior.js';
import generateState from './PolyLineWidget/state.js';
import { ViewTypes } from '../Core/WidgetManager/Constants.js';
// ----------------------------------------------------------------------------
// Factory
// ----------------------------------------------------------------------------
function vtkPolyLineWidget(publicAPI, model) {
model.classHierarchy.push('vtkPolyLineWidget');
const superClass = {
...publicAPI
};
// --- Widget Requirement ---------------------------------------------------
model.methodsToLink = ['activeColor', 'activeScaleFactor', 'closePolyLine', 'defaultScale', 'glyphResolution', 'lineThickness', 'useActiveColor', 'scaleInPixels'];
publicAPI.getRepresentationsForViewType = viewType => {
switch (viewType) {
case ViewTypes.DEFAULT:
case ViewTypes.GEOMETRY:
case ViewTypes.SLICE:
case ViewTypes.VOLUME:
default:
return [{
builder: vtkSphereHandleRepresentation,
labels: ['handles']
}, {
builder: vtkSphereHandleRepresentation,
labels: ['moveHandle']
}, {
builder: vtkPolyLineRepresentation,
labels: ['handles', 'moveHandle']
}];
}
};
// --- Public methods -------------------------------------------------------
publicAPI.setManipulator = manipulator => {
superClass.setManipulator(manipulator);
model.widgetState.getMoveHandle().setManipulator(manipulator);
model.widgetState.getHandleList().forEach(handle => {
handle.setManipulator(manipulator);
});
};
// --------------------------------------------------------------------------
// initialization
// --------------------------------------------------------------------------
// Default manipulator
publicAPI.setManipulator(model.manipulator || vtkPlaneManipulator.newInstance({
useCameraFocalPoint: true,
useCameraNormal: true
}));
}
// ----------------------------------------------------------------------------
const defaultValues = initialValues => ({
manipulator: null,
behavior: widgetBehavior,
widgetState: generateState(),
...initialValues
});
// ----------------------------------------------------------------------------
function extend(publicAPI, model, initialValues = {}) {
Object.assign(model, defaultValues(initialValues));
vtkAbstractWidgetFactory.extend(publicAPI, model, initialValues);
macro.setGet(publicAPI, model, ['manipulator']);
vtkPolyLineWidget(publicAPI, model);
}
// ----------------------------------------------------------------------------
const newInstance = macro.newInstance(extend, 'vtkPolyLineWidget');
// ----------------------------------------------------------------------------
var vtkPolyLineWidget$1 = {
newInstance,
extend
};
export { vtkPolyLineWidget$1 as default, extend, newInstance };