@cornerstonejs/tools 0.55.2 → 0.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/drawingSvg/drawCircle.d.ts +1 -1
- package/dist/cjs/drawingSvg/drawCircle.js +4 -1
- package/dist/cjs/drawingSvg/drawCircle.js.map +1 -1
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +3 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/tools/annotation/CircleROITool.d.ts +39 -0
- package/dist/cjs/tools/annotation/CircleROITool.js +593 -0
- package/dist/cjs/tools/annotation/CircleROITool.js.map +1 -0
- package/dist/cjs/tools/annotation/EllipticalROITool.js +2 -2
- package/dist/cjs/tools/annotation/EllipticalROITool.js.map +1 -1
- package/dist/cjs/tools/annotation/RectangleROITool.js +1 -1
- package/dist/cjs/tools/annotation/RectangleROITool.js.map +1 -1
- package/dist/cjs/tools/index.d.ts +2 -1
- package/dist/cjs/tools/index.js +3 -1
- package/dist/cjs/tools/index.js.map +1 -1
- package/dist/cjs/types/ToolSpecificAnnotationTypes.d.ts +26 -0
- package/dist/cjs/utilities/math/circle/_types.d.ts +5 -0
- package/dist/cjs/utilities/math/circle/_types.js +3 -0
- package/dist/cjs/utilities/math/circle/_types.js.map +1 -0
- package/dist/cjs/utilities/math/circle/getCanvasCircleCorners.d.ts +3 -0
- package/dist/cjs/utilities/math/circle/getCanvasCircleCorners.js +12 -0
- package/dist/cjs/utilities/math/circle/getCanvasCircleCorners.js.map +1 -0
- package/dist/cjs/utilities/math/circle/getCanvasCircleRadius.d.ts +2 -0
- package/dist/cjs/utilities/math/circle/getCanvasCircleRadius.js +9 -0
- package/dist/cjs/utilities/math/circle/getCanvasCircleRadius.js.map +1 -0
- package/dist/cjs/utilities/math/circle/index.d.ts +3 -0
- package/dist/cjs/utilities/math/circle/index.js +11 -0
- package/dist/cjs/utilities/math/circle/index.js.map +1 -0
- package/dist/esm/drawingSvg/drawCircle.d.ts +1 -1
- package/dist/esm/drawingSvg/drawCircle.js +4 -1
- package/dist/esm/drawingSvg/drawCircle.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/tools/annotation/CircleROITool.d.ts +39 -0
- package/dist/esm/tools/annotation/CircleROITool.js +588 -0
- package/dist/esm/tools/annotation/CircleROITool.js.map +1 -0
- package/dist/esm/tools/annotation/EllipticalROITool.js +2 -2
- package/dist/esm/tools/annotation/EllipticalROITool.js.map +1 -1
- package/dist/esm/tools/annotation/RectangleROITool.js +1 -1
- package/dist/esm/tools/annotation/RectangleROITool.js.map +1 -1
- package/dist/esm/tools/index.d.ts +2 -1
- package/dist/esm/tools/index.js +2 -1
- package/dist/esm/tools/index.js.map +1 -1
- package/dist/esm/types/ToolSpecificAnnotationTypes.d.ts +26 -0
- package/dist/esm/utilities/math/circle/_types.d.ts +5 -0
- package/dist/esm/utilities/math/circle/_types.js +2 -0
- package/dist/esm/utilities/math/circle/_types.js.map +1 -0
- package/dist/esm/utilities/math/circle/getCanvasCircleCorners.d.ts +3 -0
- package/dist/esm/utilities/math/circle/getCanvasCircleCorners.js +9 -0
- package/dist/esm/utilities/math/circle/getCanvasCircleCorners.js.map +1 -0
- package/dist/esm/utilities/math/circle/getCanvasCircleRadius.d.ts +2 -0
- package/dist/esm/utilities/math/circle/getCanvasCircleRadius.js +6 -0
- package/dist/esm/utilities/math/circle/getCanvasCircleRadius.js.map +1 -0
- package/dist/esm/utilities/math/circle/index.d.ts +3 -0
- package/dist/esm/utilities/math/circle/index.js +4 -0
- package/dist/esm/utilities/math/circle/index.js.map +1 -0
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { Types } from '@cornerstonejs/core';
|
|
2
2
|
import { SVGDrawingHelper } from '../types';
|
|
3
|
-
declare function drawCircle(svgDrawingHelper: SVGDrawingHelper, annotationUID: string, circleUID: string, center: Types.Point2, radius: number, options?: {}): void;
|
|
3
|
+
declare function drawCircle(svgDrawingHelper: SVGDrawingHelper, annotationUID: string, circleUID: string, center: Types.Point2, radius: number, options?: {}, dataId?: string): void;
|
|
4
4
|
export default drawCircle;
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const _getHash_1 = __importDefault(require("./_getHash"));
|
|
7
7
|
const _setAttributesIfNecessary_1 = __importDefault(require("./_setAttributesIfNecessary"));
|
|
8
8
|
const _setNewAttributesIfValid_1 = __importDefault(require("./_setNewAttributesIfValid"));
|
|
9
|
-
function drawCircle(svgDrawingHelper, annotationUID, circleUID, center, radius, options = {}) {
|
|
9
|
+
function drawCircle(svgDrawingHelper, annotationUID, circleUID, center, radius, options = {}, dataId = '') {
|
|
10
10
|
const { color, fill, width, lineWidth } = Object.assign({
|
|
11
11
|
color: 'dodgerblue',
|
|
12
12
|
fill: 'transparent',
|
|
@@ -31,6 +31,9 @@ function drawCircle(svgDrawingHelper, annotationUID, circleUID, center, radius,
|
|
|
31
31
|
}
|
|
32
32
|
else {
|
|
33
33
|
const newCircleElement = document.createElementNS(svgns, 'circle');
|
|
34
|
+
if (dataId !== '') {
|
|
35
|
+
newCircleElement.setAttribute('data-id', dataId);
|
|
36
|
+
}
|
|
34
37
|
(0, _setNewAttributesIfValid_1.default)(attributes, newCircleElement);
|
|
35
38
|
svgDrawingHelper.appendNode(newCircleElement, svgNodeHash);
|
|
36
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drawCircle.js","sourceRoot":"","sources":["../../../src/drawingSvg/drawCircle.ts"],"names":[],"mappings":";;;;;AAGA,0DAAkC;AAElC,4FAAoE;AACpE,0FAAkE;AAElE,SAAS,UAAU,CACjB,gBAAkC,EAClC,aAAqB,EACrB,SAAiB,EACjB,MAAoB,EACpB,MAAc,EACd,OAAO,GAAG,EAAE;
|
|
1
|
+
{"version":3,"file":"drawCircle.js","sourceRoot":"","sources":["../../../src/drawingSvg/drawCircle.ts"],"names":[],"mappings":";;;;;AAGA,0DAAkC;AAElC,4FAAoE;AACpE,0FAAkE;AAElE,SAAS,UAAU,CACjB,gBAAkC,EAClC,aAAqB,EACrB,SAAiB,EACjB,MAAoB,EACpB,MAAc,EACd,OAAO,GAAG,EAAE,EACZ,MAAM,GAAG,EAAE;IAEX,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,MAAM,CAAC,MAAM,CACrD;QACE,KAAK,EAAE,YAAY;QACnB,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,GAAG;QACV,SAAS,EAAE,SAAS;KACrB,EACD,OAAO,CACR,CAAC;IAGF,MAAM,WAAW,GAAG,SAAS,IAAI,KAAK,CAAC;IAGvC,MAAM,KAAK,GAAG,4BAA4B,CAAC;IAC3C,MAAM,WAAW,GAAG,IAAA,kBAAQ,EAAC,aAAa,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;IACjE,MAAM,qBAAqB,GAAG,gBAAgB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;IAEvE,MAAM,UAAU,GAAG;QACjB,EAAE,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,EAAE;QAClB,EAAE,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,EAAE;QAClB,CAAC,EAAE,GAAG,MAAM,EAAE;QACd,MAAM,EAAE,KAAK;QACb,IAAI;QACJ,cAAc,EAAE,WAAW;KAC5B,CAAC;IAEF,IAAI,qBAAqB,EAAE;QACzB,IAAA,mCAAyB,EAAC,UAAU,EAAE,qBAAqB,CAAC,CAAC;QAE7D,gBAAgB,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC;KAC9C;SAAM;QACL,MAAM,gBAAgB,GAAG,QAAQ,CAAC,eAAe,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAEnE,IAAI,MAAM,KAAK,EAAE,EAAE;YACjB,gBAAgB,CAAC,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;SAClD;QAED,IAAA,kCAAwB,EAAC,UAAU,EAAE,gBAAgB,CAAC,CAAC;QAEvD,gBAAgB,CAAC,UAAU,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;KAC5D;AACH,CAAC;AAED,kBAAe,UAAU,CAAC"}
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ import * as cursors from './cursors';
|
|
|
8
8
|
import * as Types from './types';
|
|
9
9
|
import * as annotation from './stateManagement/annotation';
|
|
10
10
|
import * as segmentation from './stateManagement/segmentation';
|
|
11
|
-
import { BaseTool, AnnotationTool, PanTool, TrackballRotateTool, DragProbeTool, WindowLevelTool, ZoomTool, StackScrollTool, PlanarRotateTool, StackScrollMouseWheelTool, VolumeRotateMouseWheelTool, MIPJumpToClickTool, LengthTool, ProbeTool, RectangleROITool, EllipticalROITool, BidirectionalTool, PlanarFreehandROITool, ArrowAnnotateTool, CrosshairsTool, ReferenceLinesTool, RectangleScissorsTool, CircleScissorsTool, SphereScissorsTool, RectangleROIThresholdTool, RectangleROIStartEndThresholdTool, SegmentationDisplayTool, BrushTool, AngleTool, CobbAngleTool, MagnifyTool, ReferenceCursors, ReferenceLines, PaintFillTool, ScaleOverlayTool } from './tools';
|
|
11
|
+
import { BaseTool, AnnotationTool, PanTool, TrackballRotateTool, DragProbeTool, WindowLevelTool, ZoomTool, StackScrollTool, PlanarRotateTool, StackScrollMouseWheelTool, VolumeRotateMouseWheelTool, MIPJumpToClickTool, LengthTool, ProbeTool, RectangleROITool, EllipticalROITool, CircleROITool, BidirectionalTool, PlanarFreehandROITool, ArrowAnnotateTool, CrosshairsTool, ReferenceLinesTool, RectangleScissorsTool, CircleScissorsTool, SphereScissorsTool, RectangleROIThresholdTool, RectangleROIStartEndThresholdTool, SegmentationDisplayTool, BrushTool, AngleTool, CobbAngleTool, MagnifyTool, ReferenceCursors, ReferenceLines, PaintFillTool, ScaleOverlayTool } from './tools';
|
|
12
12
|
import * as Enums from './enums';
|
|
13
|
-
export { init, destroy, addTool, removeTool, cancelActiveManipulations, BaseTool, AnnotationTool, PanTool, TrackballRotateTool, DragProbeTool, WindowLevelTool, ZoomTool, StackScrollTool, PlanarRotateTool, StackScrollMouseWheelTool, VolumeRotateMouseWheelTool, MIPJumpToClickTool, LengthTool, CrosshairsTool, ReferenceLinesTool, ProbeTool, RectangleROITool, EllipticalROITool, BidirectionalTool, PlanarFreehandROITool, ArrowAnnotateTool, AngleTool, CobbAngleTool, MagnifyTool, ReferenceCursors, ReferenceLines, ScaleOverlayTool, SegmentationDisplayTool, RectangleScissorsTool, CircleScissorsTool, SphereScissorsTool, RectangleROIThresholdTool, RectangleROIStartEndThresholdTool, BrushTool, synchronizers, Synchronizer, SynchronizerManager, PaintFillTool, Types, state, ToolGroupManager, Enums, CONSTANTS, drawing, annotation, segmentation, utilities, cursors, };
|
|
13
|
+
export { init, destroy, addTool, removeTool, cancelActiveManipulations, BaseTool, AnnotationTool, PanTool, TrackballRotateTool, DragProbeTool, WindowLevelTool, ZoomTool, StackScrollTool, PlanarRotateTool, StackScrollMouseWheelTool, VolumeRotateMouseWheelTool, MIPJumpToClickTool, LengthTool, CrosshairsTool, ReferenceLinesTool, ProbeTool, RectangleROITool, EllipticalROITool, CircleROITool, BidirectionalTool, PlanarFreehandROITool, ArrowAnnotateTool, AngleTool, CobbAngleTool, MagnifyTool, ReferenceCursors, ReferenceLines, ScaleOverlayTool, SegmentationDisplayTool, RectangleScissorsTool, CircleScissorsTool, SphereScissorsTool, RectangleROIThresholdTool, RectangleROIStartEndThresholdTool, BrushTool, synchronizers, Synchronizer, SynchronizerManager, PaintFillTool, Types, state, ToolGroupManager, Enums, CONSTANTS, drawing, annotation, segmentation, utilities, cursors, };
|
package/dist/cjs/index.js
CHANGED
|
@@ -23,8 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.cursors = exports.utilities = exports.segmentation = void 0;
|
|
26
|
+
exports.drawing = exports.CONSTANTS = exports.Enums = exports.ToolGroupManager = exports.state = exports.Types = exports.PaintFillTool = exports.SynchronizerManager = exports.Synchronizer = exports.synchronizers = exports.BrushTool = exports.RectangleROIStartEndThresholdTool = exports.RectangleROIThresholdTool = exports.SphereScissorsTool = exports.CircleScissorsTool = exports.RectangleScissorsTool = exports.SegmentationDisplayTool = exports.ScaleOverlayTool = exports.ReferenceLines = exports.ReferenceCursors = exports.MagnifyTool = exports.CobbAngleTool = exports.AngleTool = exports.ArrowAnnotateTool = exports.PlanarFreehandROITool = exports.BidirectionalTool = exports.CircleROITool = exports.EllipticalROITool = exports.RectangleROITool = exports.ProbeTool = exports.ReferenceLinesTool = exports.CrosshairsTool = exports.LengthTool = exports.MIPJumpToClickTool = exports.VolumeRotateMouseWheelTool = exports.StackScrollMouseWheelTool = exports.PlanarRotateTool = exports.StackScrollTool = exports.ZoomTool = exports.WindowLevelTool = exports.DragProbeTool = exports.TrackballRotateTool = exports.PanTool = exports.AnnotationTool = exports.BaseTool = exports.cancelActiveManipulations = exports.removeTool = exports.addTool = exports.destroy = exports.init = void 0;
|
|
27
|
+
exports.cursors = exports.utilities = exports.segmentation = exports.annotation = void 0;
|
|
28
28
|
const init_1 = require("./init");
|
|
29
29
|
Object.defineProperty(exports, "init", { enumerable: true, get: function () { return init_1.init; } });
|
|
30
30
|
Object.defineProperty(exports, "destroy", { enumerable: true, get: function () { return init_1.destroy; } });
|
|
@@ -69,6 +69,7 @@ Object.defineProperty(exports, "LengthTool", { enumerable: true, get: function (
|
|
|
69
69
|
Object.defineProperty(exports, "ProbeTool", { enumerable: true, get: function () { return tools_1.ProbeTool; } });
|
|
70
70
|
Object.defineProperty(exports, "RectangleROITool", { enumerable: true, get: function () { return tools_1.RectangleROITool; } });
|
|
71
71
|
Object.defineProperty(exports, "EllipticalROITool", { enumerable: true, get: function () { return tools_1.EllipticalROITool; } });
|
|
72
|
+
Object.defineProperty(exports, "CircleROITool", { enumerable: true, get: function () { return tools_1.CircleROITool; } });
|
|
72
73
|
Object.defineProperty(exports, "BidirectionalTool", { enumerable: true, get: function () { return tools_1.BidirectionalTool; } });
|
|
73
74
|
Object.defineProperty(exports, "PlanarFreehandROITool", { enumerable: true, get: function () { return tools_1.PlanarFreehandROITool; } });
|
|
74
75
|
Object.defineProperty(exports, "ArrowAnnotateTool", { enumerable: true, get: function () { return tools_1.ArrowAnnotateTool; } });
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iCAAuC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iCAAuC;AAiErC,qFAjEO,WAAI,OAiEP;AACJ,wFAlEa,cAAO,OAkEb;AAjET,mCAQiB;AA0Df,wFAjEA,eAAO,OAiEA;AACP,2FAjEA,kBAAU,OAiEA;AAgDV,sFAhHA,aAAK,OAgHA;AAEL,iGAjHA,wBAAgB,OAiHA;AALhB,oGA3GA,2BAAmB,OA2GA;AADnB,6FAzGA,oBAAY,OAyGA;AA3CZ,0GA7DA,iCAAyB,OA6DA;AA1D3B,uDAAyC;AA+GvC,8BAAS;AA5GX,+DAAiD;AAiG/C,sCAAa;AAhGf,sDAAwC;AA6GtC,0BAAO;AA5GT,uDAAyC;AAkHvC,8BAAS;AAjHX,mDAAqC;AAkHnC,0BAAO;AAjHT,+CAAiC;AAiG/B,sBAAK;AAhGP,yEAA2D;AA2GzD,gCAAU;AA1GZ,6EAA+D;AA4G7D,oCAAY;AA1Gd,mCAqCiB;AAYf,yFAhDA,gBAAQ,OAgDA;AACR,+FAhDA,sBAAc,OAgDA;AAEd,wFAjDA,eAAO,OAiDA;AACP,oGAjDA,2BAAmB,OAiDA;AACnB,8FAjDA,qBAAa,OAiDA;AACb,gGAjDA,uBAAe,OAiDA;AACf,yFAjDA,gBAAQ,OAiDA;AACR,gGAjDA,uBAAe,OAiDA;AACf,iGAjDA,wBAAgB,OAiDA;AAChB,0GAjDA,iCAAyB,OAiDA;AACzB,2GAjDA,kCAA0B,OAiDA;AAC1B,mGAjDA,0BAAkB,OAiDA;AAElB,2FAlDA,kBAAU,OAkDA;AAGV,0FApDA,iBAAS,OAoDA;AACT,iGApDA,wBAAgB,OAoDA;AAChB,kGApDA,yBAAiB,OAoDA;AACjB,8FApDA,qBAAa,OAoDA;AACb,kGApDA,yBAAiB,OAoDA;AACjB,sGApDA,6BAAqB,OAoDA;AACrB,kGApDA,yBAAiB,OAoDA;AARjB,+FA3CA,sBAAc,OA2CA;AACd,mGA3CA,0BAAkB,OA2CA;AAiBlB,sGA3DA,6BAAqB,OA2DA;AACrB,mGA3DA,0BAAkB,OA2DA;AAClB,mGA3DA,0BAAkB,OA2DA;AAClB,0GA3DA,iCAAyB,OA2DA;AACzB,kHA3DA,yCAAiC,OA2DA;AANjC,wGApDA,+BAAuB,OAoDA;AAOvB,0FA1DA,iBAAS,OA0DA;AAdT,0FA3CA,iBAAS,OA2CA;AACT,8FA3CA,qBAAa,OA2CA;AACb,4FA3CA,mBAAW,OA2CA;AACX,iGA3CA,wBAAgB,OA2CA;AAChB,+FA3CA,sBAAc,OA2CA;AAed,8FAzDA,qBAAa,OAyDA;AAdb,iGA1CA,wBAAgB,OA0CA;AAvClB,+CAAiC;AA2D/B,sBAAK"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { AnnotationTool } from '../base';
|
|
2
|
+
import type { Types } from '@cornerstonejs/core';
|
|
3
|
+
import { EventTypes, ToolHandle, PublicToolProps, ToolProps, SVGDrawingHelper } from '../../types';
|
|
4
|
+
import { CircleROIAnnotation } from '../../types/ToolSpecificAnnotationTypes';
|
|
5
|
+
declare class CircleROITool extends AnnotationTool {
|
|
6
|
+
static toolName: any;
|
|
7
|
+
touchDragCallback: any;
|
|
8
|
+
mouseDragCallback: any;
|
|
9
|
+
_throttledCalculateCachedStats: any;
|
|
10
|
+
editData: {
|
|
11
|
+
annotation: any;
|
|
12
|
+
viewportIdsToRender: Array<string>;
|
|
13
|
+
handleIndex?: number;
|
|
14
|
+
movingTextBox?: boolean;
|
|
15
|
+
newAnnotation?: boolean;
|
|
16
|
+
hasMoved?: boolean;
|
|
17
|
+
} | null;
|
|
18
|
+
isDrawing: boolean;
|
|
19
|
+
isHandleOutsideImage: boolean;
|
|
20
|
+
constructor(toolProps?: PublicToolProps, defaultToolProps?: ToolProps);
|
|
21
|
+
addNewAnnotation: (evt: EventTypes.InteractionEventType) => CircleROIAnnotation;
|
|
22
|
+
isPointNearTool: (element: HTMLDivElement, annotation: CircleROIAnnotation, canvasCoords: Types.Point2, proximity: number) => boolean;
|
|
23
|
+
toolSelectedCallback: (evt: EventTypes.InteractionEventType, annotation: CircleROIAnnotation) => void;
|
|
24
|
+
handleSelectedCallback: (evt: EventTypes.InteractionEventType, annotation: CircleROIAnnotation, handle: ToolHandle) => void;
|
|
25
|
+
_endCallback: (evt: EventTypes.InteractionEventType) => void;
|
|
26
|
+
_dragDrawCallback: (evt: EventTypes.InteractionEventType) => void;
|
|
27
|
+
_dragModifyCallback: (evt: EventTypes.InteractionEventType) => void;
|
|
28
|
+
_dragHandle: (evt: EventTypes.InteractionEventType) => void;
|
|
29
|
+
cancel: (element: HTMLDivElement) => any;
|
|
30
|
+
_activateModify: (element: any) => void;
|
|
31
|
+
_deactivateModify: (element: any) => void;
|
|
32
|
+
_activateDraw: (element: any) => void;
|
|
33
|
+
_deactivateDraw: (element: any) => void;
|
|
34
|
+
renderAnnotation: (enabledElement: Types.IEnabledElement, svgDrawingHelper: SVGDrawingHelper) => boolean;
|
|
35
|
+
_getTextLines: (data: any, targetId: string, isPreScaled: boolean) => string[];
|
|
36
|
+
_calculateCachedStats: (annotation: any, viewport: any, renderingEngine: any, enabledElement: any) => any;
|
|
37
|
+
_isInsideVolume: (index1: any, index2: any, dimensions: any) => boolean;
|
|
38
|
+
}
|
|
39
|
+
export default CircleROITool;
|