@kitware/vtk.js
Version:
Visualization Toolkit for the Web
23 lines (15 loc) • 558 B
JavaScript
import { m as macro } from '../../../macros2.js';
// ----------------------------------------------------------------------------
const DEFAULT_VALUES = {
shape: ''
};
// ----------------------------------------------------------------------------
function extend(publicAPI, model, initialValues = {}) {
Object.assign(model, DEFAULT_VALUES, initialValues);
macro.setGet(publicAPI, model, ['shape']);
}
// ----------------------------------------------------------------------------
var shape = {
extend
};
export { shape as default, extend };