Files
irc_web/src/views/trials/trials-panel/reading/visit-review/tools/LengthscaleTool.js
T

12 lines
296 B
JavaScript

import * as cornerstoneTools from '@cornerstonejs/tools'
class LengthscaleTool extends cornerstoneTools.LengthTool {
static { this.toolName = 'Lengthscale'; }
constructor(
toolProps,
defaultToolProps
) {
super(toolProps, defaultToolProps);
}
}
export default LengthscaleTool;