@kitware/vtk.js 23.4.2 → 23.4.4
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/Common/Core/Math/Constants.js +12 -0
- package/Common/Core/Math/index.js +1 -1
- package/Common/Core/Math.js +1 -1
- package/Common/Core/ScalarsToColors/Constants.d.ts +18 -0
- package/Common/DataModel/AbstractPointLocator.d.ts +54 -0
- package/Common/DataModel/AbstractPointLocator.js +40 -0
- package/Common/DataModel/BoundingBox.d.ts +659 -0
- package/Common/DataModel/Collection.d.ts +118 -0
- package/Common/DataModel/Collection.js +113 -0
- package/Common/DataModel/DataSet/Constants.d.ts +27 -0
- package/Common/DataModel/EdgeLocator.d.ts +79 -0
- package/Common/DataModel/EdgeLocator.js +85 -0
- package/Common/DataModel/ITKHelper.d.ts +54 -0
- package/Common/DataModel/IncrementalOctreeNode.d.ts +297 -0
- package/Common/DataModel/IncrementalOctreeNode.js +640 -0
- package/Common/DataModel/IncrementalOctreePointLocator.d.ts +61 -0
- package/Common/DataModel/IncrementalOctreePointLocator.js +398 -0
- package/Common/DataModel/Locator.d.ts +43 -0
- package/Common/DataModel/Locator.js +37 -0
- package/Common/DataModel/Plane.js +1 -1
- package/Common/DataModel/PolyData/Constants.d.ts +6 -0
- package/Common/DataModel/PolyLine.d.ts +63 -0
- package/Common/DataModel/PolyLine.js +77 -0
- package/Common/DataModel/Polygon/Constants.js +12 -0
- package/Common/DataModel/Polygon.js +1 -1
- package/Common/DataModel/Quad/Constants.js +9 -0
- package/Common/DataModel/Quad.d.ts +91 -0
- package/Common/DataModel/Quad.js +235 -0
- package/Common/DataModel/SelectionNode/Constants.d.ts +27 -0
- package/Common/DataModel/Spline1D/Constants.js +17 -0
- package/Common/DataModel/Spline3D/Constants.d.ts +9 -0
- package/Common/Transform/Transform.js +51 -0
- package/Filters/Core/PolyDataNormals.js +124 -0
- package/Filters/General/ClipClosedSurface/Constants.js +10 -0
- package/Filters/General/ClipClosedSurface.d.ts +95 -0
- package/Filters/General/ClipClosedSurface.js +972 -0
- package/Filters/General/ContourTriangulator/Constants.js +6 -0
- package/Filters/General/ContourTriangulator/helper.js +1951 -0
- package/Filters/General/ContourTriangulator.d.ts +136 -0
- package/Filters/General/ContourTriangulator.js +202 -0
- package/Filters/General/ImageMarchingCubes.js +1 -1
- package/Filters/General/MoleculeToRepresentation.js +1 -1
- package/Filters/General/OBBTree/OBBNode.js +82 -0
- package/Filters/General/OBBTree/helper.js +92 -0
- package/Filters/General/OBBTree.js +1243 -0
- package/Filters/General/TubeFilter.js +1 -1
- package/Filters/Sources/LineSource.js +1 -1
- package/Filters/Sources/PlaneSource.js +1 -1
- package/Filters/Texture/TextureMapToPlane.js +1 -1
- package/Interaction/Manipulators/CompositeCameraManipulator.d.ts +68 -0
- package/Interaction/Manipulators/CompositeGestureManipulator.d.ts +168 -0
- package/Interaction/Manipulators/CompositeKeyboardManipulator.d.ts +48 -0
- package/Interaction/Manipulators/CompositeMouseManipulator.d.ts +149 -0
- package/Interaction/Manipulators/CompositeVRManipulator.d.ts +44 -0
- package/Interaction/Manipulators/GestureCameraManipulator.d.ts +34 -0
- package/Interaction/Manipulators/KeyboardCameraManipulator.js +1 -1
- package/Interaction/Manipulators/MouseBoxSelectorManipulator.d.ts +88 -0
- package/Interaction/Manipulators/MouseCameraAxisRotateManipulator.js +1 -1
- package/Interaction/Manipulators/MouseCameraTrackballMultiRotateManipulator.d.ts +32 -0
- package/Interaction/Manipulators/MouseCameraTrackballPanManipulator.d.ts +33 -0
- package/Interaction/Manipulators/MouseCameraTrackballPanManipulator.js +1 -1
- package/Interaction/Manipulators/MouseCameraTrackballRollManipulator.d.ts +33 -0
- package/Interaction/Manipulators/MouseCameraTrackballRotateManipulator.d.ts +67 -0
- package/Interaction/Manipulators/MouseCameraTrackballRotateManipulator.js +1 -1
- package/Interaction/Manipulators/MouseCameraTrackballZoomManipulator.d.ts +45 -0
- package/Interaction/Manipulators/MouseCameraTrackballZoomToMouseManipulator.d.ts +26 -0
- package/Interaction/Manipulators/MouseCameraUnicamManipulator.js +1 -1
- package/Interaction/Manipulators/MouseCameraUnicamRotateManipulator.js +1 -1
- package/Interaction/Manipulators/MouseRangeManipulator.d.ts +53 -0
- package/Interaction/Style/InteractorStyleImage.d.ts +107 -0
- package/Interaction/Style/InteractorStyleMPRSlice.js +1 -1
- package/Interaction/Style/InteractorStyleManipulator.d.ts +348 -0
- package/Interaction/Style/InteractorStyleTrackballCamera.d.ts +170 -0
- package/Interaction/Widgets/ImageCroppingRegionsWidget.js +1 -1
- package/Interaction/Widgets/LabelRepresentation.js +1 -1
- package/Interaction/Widgets/OrientationMarkerWidget/Constants.d.ts +11 -0
- package/Interaction/Widgets/ResliceCursor/ResliceCursor.js +1 -1
- package/Interaction/Widgets/ResliceCursor/ResliceCursorLineRepresentation.js +1 -1
- package/Interaction/Widgets/ResliceCursor/ResliceCursorRepresentation.js +1 -1
- package/Proxy/Core/AbstractRepresentationProxy.d.ts +24 -0
- package/Proxy/Core/LookupTableProxy.d.ts +45 -0
- package/Proxy/Core/PiecewiseFunctionProxy.d.ts +62 -0
- package/Proxy/Core/ProxyManager.d.ts +115 -0
- package/Proxy/Core/SourceProxy.d.ts +22 -0
- package/Proxy/Core/View2DProxy.d.ts +7 -0
- package/Proxy/Core/View2DProxy.js +1 -1
- package/Proxy/Core/ViewProxy.d.ts +86 -0
- package/Proxy/Representations/SliceRepresentationProxy.d.ts +27 -0
- package/Proxy/Representations/VolumeRepresentationProxy.d.ts +44 -0
- package/README.md +2 -2
- package/Rendering/Core/AbstractImageMapper/helper.js +127 -0
- package/Rendering/Core/AbstractImageMapper.d.ts +82 -0
- package/Rendering/Core/AbstractImageMapper.js +44 -0
- package/Rendering/Core/Camera.js +1 -1
- package/Rendering/Core/CellPicker.js +1 -1
- package/Rendering/Core/ColorTransferFunction/ColorMaps.d.ts +24 -0
- package/Rendering/Core/ColorTransferFunction/Constants.d.ts +17 -0
- package/Rendering/Core/ColorTransferFunction.js +1 -1
- package/Rendering/Core/Coordinate/Constants.d.ts +14 -0
- package/Rendering/Core/Coordinate.js +1 -1
- package/Rendering/Core/Glyph3DMapper/Constants.d.ts +17 -0
- package/Rendering/Core/Glyph3DMapper.js +1 -1
- package/Rendering/Core/HardwareSelector.d.ts +84 -0
- package/Rendering/Core/ImageArrayMapper.d.ts +253 -0
- package/Rendering/Core/ImageArrayMapper.js +242 -0
- package/Rendering/Core/ImageMapper/Constants.d.ts +14 -0
- package/Rendering/Core/ImageMapper.js +1 -1
- package/Rendering/Core/ImageProperty/Constants.d.ts +9 -0
- package/Rendering/Core/ImageResliceMapper/Constants.d.ts +11 -0
- package/Rendering/Core/ImageResliceMapper/Constants.js +11 -0
- package/Rendering/Core/ImageResliceMapper.d.ts +245 -0
- package/Rendering/Core/ImageResliceMapper.js +70 -0
- package/Rendering/Core/InteractorObserver.d.ts +132 -0
- package/Rendering/Core/InteractorStyle/Constants.d.ts +16 -0
- package/Rendering/Core/InteractorStyle.d.ts +229 -0
- package/Rendering/Core/Light.js +1 -1
- package/Rendering/Core/Mapper/Constants.d.ts +26 -0
- package/Rendering/Core/Mapper.js +1 -1
- package/Rendering/Core/Picker.js +1 -1
- package/Rendering/Core/Prop/Constants.d.ts +9 -0
- package/Rendering/Core/Prop/Constants.js +9 -0
- package/Rendering/Core/Property/Constants.d.ts +24 -0
- package/Rendering/Core/Property2D/Constants.d.ts +9 -0
- package/Rendering/Core/RenderWindow.js +1 -1
- package/Rendering/Core/RenderWindowInteractor/Constants.d.ts +31 -0
- package/Rendering/Core/Renderer.js +1 -1
- package/Rendering/Core/VolumeMapper/Constants.d.ts +20 -0
- package/Rendering/Core/VolumeMapper.js +1 -1
- package/Rendering/Core/VolumeProperty/Constants.d.ts +16 -0
- package/Rendering/Misc/SynchronizableRenderWindow/BehaviorManager/CameraSynchronizer.js +129 -0
- package/Rendering/Misc/SynchronizableRenderWindow/BehaviorManager.js +131 -0
- package/Rendering/Misc/SynchronizableRenderWindow/ObjectManager.d.ts +80 -0
- package/Rendering/Misc/SynchronizableRenderWindow/ObjectManager.js +763 -0
- package/Rendering/OpenGL/HardwareSelector/Constants.d.ts +8 -0
- package/Rendering/OpenGL/HardwareSelector.d.ts +339 -0
- package/Rendering/OpenGL/ImageResliceMapper.js +996 -0
- package/Rendering/OpenGL/PolyDataMapper.js +1 -1
- package/Rendering/OpenGL/PolyDataMapper2D.js +1 -1
- package/Rendering/OpenGL/RenderWindow/Constants.d.ts +10 -0
- package/Rendering/OpenGL/RenderWindow/Constants.js +13 -0
- package/Rendering/OpenGL/RenderWindow/ContextProxy.js +70 -0
- package/Rendering/OpenGL/RenderWindow.d.ts +9 -2
- package/Rendering/OpenGL/RenderWindow.js +2 -1
- package/Rendering/OpenGL/glsl/vtkImageResliceMapperFS.glsl.js +3 -0
- package/Rendering/OpenGL/glsl/vtkImageResliceMapperVS.glsl.js +3 -0
- package/Rendering/WebGPU/Actor2D.js +151 -0
- package/Rendering/WebGPU/BufferManager.js +1 -1
- package/Rendering/WebGPU/CellArrayMapper.js +853 -0
- package/Rendering/WebGPU/IndexBuffer.js +397 -0
- package/Rendering/WebGPU/PolyDataMapper2D.js +99 -0
- package/Rendering/WebGPU/RenderWindow.js +3 -1
- package/Rendering/WebGPU/SimpleMapper.js +290 -0
- package/Widgets/Core/AbstractWidget.d.ts +187 -0
- package/Widgets/Core/AbstractWidgetFactory.d.ts +131 -0
- package/Widgets/Core/StateBuilder/color3Mixin.js +24 -0
- package/Widgets/Core/StateBuilder/orientationMixin.js +1 -1
- package/Widgets/Core/StateBuilder.d.ts +29 -0
- package/Widgets/Core/WidgetManager/Constants.d.ts +27 -0
- package/Widgets/Core/WidgetManager.d.ts +231 -0
- package/Widgets/Core/WidgetState.d.ts +81 -0
- package/Widgets/Manipulators/AbstractManipulator.d.ts +221 -0
- package/Widgets/Manipulators/AbstractManipulator.js +57 -0
- package/Widgets/Manipulators/LineManipulator.js +1 -1
- package/Widgets/Manipulators/TrackballManipulator.js +1 -1
- package/Widgets/Representations/GlyphRepresentation.js +325 -0
- package/Widgets/Representations/LineHandleRepresentation.js +116 -0
- package/Widgets/Representations/ResliceCursorContextRepresentation.js +1 -1
- package/Widgets/Representations/WidgetRepresentation.js +1 -1
- package/Widgets/Widgets3D/AngleWidget.js +1 -1
- package/Widgets/Widgets3D/InteractiveOrientationWidget.d.ts +40 -0
- package/Widgets/Widgets3D/LabelWidget/behavior.js +157 -0
- package/Widgets/Widgets3D/LabelWidget/state.js +22 -0
- package/Widgets/Widgets3D/LabelWidget.js +78 -0
- package/Widgets/Widgets3D/LineWidget/behavior.js +1 -1
- package/Widgets/Widgets3D/LineWidget/helpers.js +1 -1
- package/Widgets/Widgets3D/ResliceCursorWidget/behavior.js +1 -1
- package/Widgets/Widgets3D/ResliceCursorWidget/helpers.js +1 -1
- package/Widgets/Widgets3D/ResliceCursorWidget.js +1 -1
- package/index.d.ts +133 -74
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import vtkStateBuilder from '../../Core/StateBuilder.js';
|
|
2
|
+
|
|
3
|
+
function generateState() {
|
|
4
|
+
return vtkStateBuilder.createBuilder().addStateFromMixin({
|
|
5
|
+
labels: ['moveHandle'],
|
|
6
|
+
mixins: ['origin', 'color', 'scale1', 'visible', 'manipulator'],
|
|
7
|
+
name: 'moveHandle',
|
|
8
|
+
initialValues: {
|
|
9
|
+
scale1: 10,
|
|
10
|
+
visible: false
|
|
11
|
+
}
|
|
12
|
+
}).addStateFromMixin({
|
|
13
|
+
labels: ['SVGtext'],
|
|
14
|
+
mixins: ['origin', 'color', 'text', 'visible', 'manipulator'],
|
|
15
|
+
name: 'text',
|
|
16
|
+
initialValues: {
|
|
17
|
+
visible: true
|
|
18
|
+
}
|
|
19
|
+
}).build();
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { generateState as default };
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
2
|
+
import macro from '../../macros.js';
|
|
3
|
+
import vtkAbstractWidgetFactory from '../Core/AbstractWidgetFactory.js';
|
|
4
|
+
import vtkSphereHandleRepresentation from '../Representations/SphereHandleRepresentation.js';
|
|
5
|
+
import vtkPlanePointManipulator from '../Manipulators/PlaneManipulator.js';
|
|
6
|
+
import widgetBehavior from './LabelWidget/behavior.js';
|
|
7
|
+
import generateState from './LabelWidget/state.js';
|
|
8
|
+
import { ViewTypes } from '../Core/WidgetManager/Constants.js';
|
|
9
|
+
|
|
10
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
+
|
|
12
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
13
|
+
// Factory
|
|
14
|
+
// ----------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
function vtkLabelWidget(publicAPI, model) {
|
|
17
|
+
model.classHierarchy.push('vtkLabelWidget');
|
|
18
|
+
|
|
19
|
+
var superClass = _objectSpread({}, publicAPI); // --- Widget Requirement ---------------------------------------------------
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
model.methodsToLink = ['scaleInPixels'];
|
|
23
|
+
|
|
24
|
+
publicAPI.getRepresentationsForViewType = function (viewType) {
|
|
25
|
+
switch (viewType) {
|
|
26
|
+
case ViewTypes.DEFAULT:
|
|
27
|
+
case ViewTypes.GEOMETRY:
|
|
28
|
+
case ViewTypes.SLICE:
|
|
29
|
+
case ViewTypes.VOLUME:
|
|
30
|
+
default:
|
|
31
|
+
return [{
|
|
32
|
+
builder: vtkSphereHandleRepresentation,
|
|
33
|
+
labels: ['moveHandle']
|
|
34
|
+
}];
|
|
35
|
+
}
|
|
36
|
+
}; // --- Public methods -------------------------------------------------------
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
publicAPI.setManipulator = function (manipulator) {
|
|
40
|
+
superClass.setManipulator(manipulator);
|
|
41
|
+
model.widgetState.getMoveHandle().setManipulator(manipulator);
|
|
42
|
+
model.widgetState.getText().setManipulator(manipulator);
|
|
43
|
+
}; // --------------------------------------------------------------------------
|
|
44
|
+
// initialization
|
|
45
|
+
// --------------------------------------------------------------------------
|
|
46
|
+
// Default manipulator
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
publicAPI.setManipulator(model.manipulator || vtkPlanePointManipulator.newInstance({
|
|
50
|
+
useCameraNormal: true
|
|
51
|
+
}));
|
|
52
|
+
} // ----------------------------------------------------------------------------
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
function defaultValues(initialValues) {
|
|
56
|
+
return _objectSpread({
|
|
57
|
+
behavior: widgetBehavior,
|
|
58
|
+
widgetState: generateState()
|
|
59
|
+
}, initialValues);
|
|
60
|
+
} // ----------------------------------------------------------------------------
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
function extend(publicAPI, model) {
|
|
64
|
+
var initialValues = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
65
|
+
Object.assign(model, defaultValues(initialValues));
|
|
66
|
+
vtkAbstractWidgetFactory.extend(publicAPI, model, initialValues);
|
|
67
|
+
macro.setGet(publicAPI, model, ['manipulator']);
|
|
68
|
+
vtkLabelWidget(publicAPI, model);
|
|
69
|
+
} // ----------------------------------------------------------------------------
|
|
70
|
+
|
|
71
|
+
var newInstance = macro.newInstance(extend, 'vtkLabelWidget'); // ----------------------------------------------------------------------------
|
|
72
|
+
|
|
73
|
+
var index = {
|
|
74
|
+
newInstance: newInstance,
|
|
75
|
+
extend: extend
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export { index as default, extend, newInstance };
|
|
@@ -2,7 +2,7 @@ import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
|
2
2
|
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
|
|
3
3
|
import Constants from './Constants.js';
|
|
4
4
|
import macro from '../../../macros.js';
|
|
5
|
-
import {
|
|
5
|
+
import { j as subtract, l as add, g as normalize } from '../../../Common/Core/Math/index.js';
|
|
6
6
|
import { getNumberOfPlacedHandles, isHandlePlaced, calculateTextPosition, updateTextPosition, getPoint } from './helpers.js';
|
|
7
7
|
|
|
8
8
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { j as subtract, t as multiplyScalar, l as add, z as areEquals } from '../../../Common/Core/Math/index.js';
|
|
2
2
|
|
|
3
3
|
function calculateTextPosition(model) {
|
|
4
4
|
var vector = [0, 0, 0];
|
|
@@ -3,7 +3,7 @@ import macro from '../../../macros.js';
|
|
|
3
3
|
import vtkBoundingBox from '../../../Common/DataModel/BoundingBox.js';
|
|
4
4
|
import vtkLine from '../../../Common/DataModel/Line.js';
|
|
5
5
|
import vtkPlanePointManipulator from '../../Manipulators/PlaneManipulator.js';
|
|
6
|
-
import { t as multiplyScalar,
|
|
6
|
+
import { t as multiplyScalar, j as subtract, g as normalize, d as dot, k as cross, Q as multiplyAccumulate, S as signedAngleBetweenVectors } from '../../../Common/Core/Math/index.js';
|
|
7
7
|
import { updateState, getAssociatedLinesName, boundPointOnPlane, rotateVector } from './helpers.js';
|
|
8
8
|
import { InteractionMethodsName, ScrollingMethods } from './Constants.js';
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ import vtkBoundingBox, { STATIC } from '../../../Common/DataModel/BoundingBox.js
|
|
|
3
3
|
import vtkCubeSource from '../../../Filters/Sources/CubeSource.js';
|
|
4
4
|
import vtkCutter from '../../../Filters/Core/Cutter.js';
|
|
5
5
|
import vtkPlane from '../../../Common/DataModel/Plane.js';
|
|
6
|
-
import {
|
|
6
|
+
import { j as subtract, g as normalize, k as cross, t as multiplyScalar, Q as multiplyAccumulate, S as signedAngleBetweenVectors } from '../../../Common/Core/Math/index.js';
|
|
7
7
|
import vtkMatrixBuilder from '../../../Common/Core/MatrixBuilder.js';
|
|
8
8
|
import { ViewTypes } from '../../Core/WidgetManager/Constants.js';
|
|
9
9
|
|
|
@@ -4,7 +4,7 @@ import vtkAbstractWidgetFactory from '../Core/AbstractWidgetFactory.js';
|
|
|
4
4
|
import vtkPlane from '../../Common/DataModel/Plane.js';
|
|
5
5
|
import vtkPlaneSource from '../../Filters/Sources/PlaneSource.js';
|
|
6
6
|
import vtkResliceCursorContextRepresentation from '../Representations/ResliceCursorContextRepresentation.js';
|
|
7
|
-
import { f as distance2BetweenPoints, Q as multiplyAccumulate,
|
|
7
|
+
import { f as distance2BetweenPoints, Q as multiplyAccumulate, j as subtract, g as normalize, t as multiplyScalar, l as add } from '../../Common/Core/Math/index.js';
|
|
8
8
|
import widgetBehavior from './ResliceCursorWidget/behavior.js';
|
|
9
9
|
import generateState from './ResliceCursorWidget/state.js';
|
|
10
10
|
import { updateState, transformPlane, boundPlane } from './ResliceCursorWidget/helpers.js';
|
package/index.d.ts
CHANGED
|
@@ -3,145 +3,204 @@
|
|
|
3
3
|
/// <reference path="./macros.d.ts" />
|
|
4
4
|
/// <reference path="./vtk.d.ts" />
|
|
5
5
|
/// <reference path="./Common/Core/Base64.d.ts" />
|
|
6
|
-
/// <reference path="./Common/Core/CellArray.d.ts" />
|
|
7
|
-
/// <reference path="./Common/Core/DataArray.d.ts" />
|
|
8
|
-
/// <reference path="./Common/Core/Endian.d.ts" />
|
|
9
6
|
/// <reference path="./Common/Core/HalfFloat.d.ts" />
|
|
7
|
+
/// <reference path="./Common/Core/Points.d.ts" />
|
|
8
|
+
/// <reference path="./Common/Core/DataArray.d.ts" />
|
|
10
9
|
/// <reference path="./Common/Core/ImageHelper.d.ts" />
|
|
10
|
+
/// <reference path="./Common/Core/ScalarsToColors/Constants.d.ts" />
|
|
11
11
|
/// <reference path="./Common/Core/LookupTable.d.ts" />
|
|
12
|
-
/// <reference path="./Common/Core/MatrixBuilder.d.ts" />
|
|
13
|
-
/// <reference path="./Common/Core/Points.d.ts" />
|
|
14
|
-
/// <reference path="./Common/Core/PriorityQueue.d.ts" />
|
|
15
|
-
/// <reference path="./Common/Core/ProgressHandler.d.ts" />
|
|
16
12
|
/// <reference path="./Common/Core/ScalarsToColors.d.ts" />
|
|
17
|
-
/// <reference path="./Common/Core/
|
|
18
|
-
/// <reference path="./Common/Core/
|
|
19
|
-
/// <reference path="./Common/Core/VariantArray.d.ts" />
|
|
13
|
+
/// <reference path="./Common/Core/PriorityQueue.d.ts" />
|
|
14
|
+
/// <reference path="./Common/Core/CellArray.d.ts" />
|
|
20
15
|
/// <reference path="./Common/DataModel/Box.d.ts" />
|
|
21
|
-
/// <reference path="./Common/
|
|
22
|
-
/// <reference path="./Common/
|
|
16
|
+
/// <reference path="./Common/Core/URLExtract.d.ts" />
|
|
17
|
+
/// <reference path="./Common/Core/MatrixBuilder.d.ts" />
|
|
18
|
+
/// <reference path="./Common/Core/StringArray.d.ts" />
|
|
19
|
+
/// <reference path="./Common/Core/Endian.d.ts" />
|
|
23
20
|
/// <reference path="./Common/DataModel/Cone.d.ts" />
|
|
24
|
-
/// <reference path="./Common/DataModel/
|
|
25
|
-
/// <reference path="./Common/DataModel/
|
|
26
|
-
/// <reference path="./Common/DataModel/
|
|
21
|
+
/// <reference path="./Common/DataModel/Cell.d.ts" />
|
|
22
|
+
/// <reference path="./Common/DataModel/CardinalSpline1D.d.ts" />
|
|
23
|
+
/// <reference path="./Common/DataModel/BoundingBox.d.ts" />
|
|
27
24
|
/// <reference path="./Common/DataModel/DataSetAttributes.d.ts" />
|
|
25
|
+
/// <reference path="./Common/DataModel/Cylinder.d.ts" />
|
|
26
|
+
/// <reference path="./Common/Core/VariantArray.d.ts" />
|
|
28
27
|
/// <reference path="./Common/DataModel/ImageData.d.ts" />
|
|
28
|
+
/// <reference path="./Common/DataModel/DataSetAttributes/FieldData.d.ts" />
|
|
29
|
+
/// <reference path="./Common/DataModel/ITKHelper.d.ts" />
|
|
29
30
|
/// <reference path="./Common/DataModel/KochanekSpline1D.d.ts" />
|
|
31
|
+
/// <reference path="./Common/DataModel/DataSet.d.ts" />
|
|
32
|
+
/// <reference path="./Common/DataModel/DataSet/Constants.d.ts" />
|
|
33
|
+
/// <reference path="./Common/DataModel/SelectionNode/Constants.d.ts" />
|
|
30
34
|
/// <reference path="./Common/DataModel/Line.d.ts" />
|
|
31
|
-
/// <reference path="./Common/DataModel/
|
|
32
|
-
/// <reference path="./Common/DataModel/
|
|
35
|
+
/// <reference path="./Common/DataModel/SelectionNode.d.ts" />
|
|
36
|
+
/// <reference path="./Common/DataModel/Polygon.d.ts" />
|
|
33
37
|
/// <reference path="./Common/DataModel/PointSet.d.ts" />
|
|
38
|
+
/// <reference path="./Common/DataModel/Spline3D/Constants.d.ts" />
|
|
39
|
+
/// <reference path="./Common/DataModel/PolyData/Constants.d.ts" />
|
|
40
|
+
/// <reference path="./Common/DataModel/Plane.d.ts" />
|
|
34
41
|
/// <reference path="./Common/DataModel/PolyData.d.ts" />
|
|
35
|
-
/// <reference path="./Common/DataModel/
|
|
36
|
-
/// <reference path="./Common/
|
|
37
|
-
/// <reference path="./Common/DataModel/Sphere.d.ts" />
|
|
38
|
-
/// <reference path="./Common/DataModel/Spline1D.d.ts" />
|
|
42
|
+
/// <reference path="./Common/DataModel/PiecewiseFunction.d.ts" />
|
|
43
|
+
/// <reference path="./Common/Core/ProgressHandler.d.ts" />
|
|
39
44
|
/// <reference path="./Common/DataModel/Spline3D.d.ts" />
|
|
40
45
|
/// <reference path="./Common/DataModel/Triangle.d.ts" />
|
|
41
|
-
/// <reference path="./Common/
|
|
46
|
+
/// <reference path="./Common/DataModel/Spline1D.d.ts" />
|
|
47
|
+
/// <reference path="./Common/DataModel/Sphere.d.ts" />
|
|
42
48
|
/// <reference path="./Filters/General/AppendPolyData.d.ts" />
|
|
43
|
-
/// <reference path="./Filters/General/ImageCropFilter.d.ts" />
|
|
44
49
|
/// <reference path="./Filters/General/ImageOutlineFilter.d.ts" />
|
|
45
|
-
/// <reference path="./
|
|
46
|
-
/// <reference path="./Filters/General/
|
|
50
|
+
/// <reference path="./Common/Transform/LandmarkTransform.d.ts" />
|
|
51
|
+
/// <reference path="./Filters/General/TriangleFilter.d.ts" />
|
|
47
52
|
/// <reference path="./Filters/General/LineFilter.d.ts" />
|
|
53
|
+
/// <reference path="./Filters/General/ImageStreamline.d.ts" />
|
|
54
|
+
/// <reference path="./Filters/General/ImageSliceFilter.d.ts" />
|
|
55
|
+
/// <reference path="./Filters/General/ImageCropFilter.d.ts" />
|
|
48
56
|
/// <reference path="./Filters/General/OutlineFilter.d.ts" />
|
|
49
|
-
/// <reference path="./Filters/General/TriangleFilter.d.ts" />
|
|
50
57
|
/// <reference path="./Filters/General/TubeFilter.d.ts" />
|
|
51
|
-
/// <reference path="./Filters/Sources/Arrow2DSource.d.ts" />
|
|
52
58
|
/// <reference path="./Filters/Sources/ArrowSource.d.ts" />
|
|
53
|
-
/// <reference path="./Filters/Sources/CircleSource.d.ts" />
|
|
54
|
-
/// <reference path="./Filters/Sources/ConeSource.d.ts" />
|
|
55
59
|
/// <reference path="./Filters/Sources/CubeSource.d.ts" />
|
|
56
|
-
/// <reference path="./Filters/Sources/Cursor3D.d.ts" />
|
|
57
60
|
/// <reference path="./Filters/Sources/CylinderSource.d.ts" />
|
|
58
|
-
/// <reference path="./Filters/Sources/
|
|
61
|
+
/// <reference path="./Filters/Sources/ConeSource.d.ts" />
|
|
62
|
+
/// <reference path="./Filters/Sources/CircleSource.d.ts" />
|
|
59
63
|
/// <reference path="./Filters/Sources/PlaneSource.d.ts" />
|
|
60
64
|
/// <reference path="./Filters/Sources/PointSource.d.ts" />
|
|
61
|
-
/// <reference path="./Filters/Sources/
|
|
62
|
-
/// <reference path="./Filters/
|
|
65
|
+
/// <reference path="./Filters/Sources/Arrow2DSource.d.ts" />
|
|
66
|
+
/// <reference path="./Filters/Sources/Cursor3D.d.ts" />
|
|
67
|
+
/// <reference path="./Filters/Sources/LineSource.d.ts" />
|
|
63
68
|
/// <reference path="./Filters/Texture/TextureMapToSphere.d.ts" />
|
|
69
|
+
/// <reference path="./Filters/Texture/TextureMapToPlane.d.ts" />
|
|
70
|
+
/// <reference path="./Filters/Sources/SphereSource.d.ts" />
|
|
71
|
+
/// <reference path="./Interaction/Manipulators/CompositeKeyboardManipulator.d.ts" />
|
|
72
|
+
/// <reference path="./Interaction/Manipulators/CompositeMouseManipulator.d.ts" />
|
|
73
|
+
/// <reference path="./Interaction/Manipulators/CompositeGestureManipulator.d.ts" />
|
|
74
|
+
/// <reference path="./Interaction/Manipulators/CompositeCameraManipulator.d.ts" />
|
|
75
|
+
/// <reference path="./Interaction/Manipulators/MouseBoxSelectorManipulator.d.ts" />
|
|
76
|
+
/// <reference path="./Interaction/Manipulators/MouseCameraTrackballRollManipulator.d.ts" />
|
|
77
|
+
/// <reference path="./Interaction/Manipulators/MouseCameraTrackballMultiRotateManipulator.d.ts" />
|
|
78
|
+
/// <reference path="./Interaction/Manipulators/MouseCameraTrackballPanManipulator.d.ts" />
|
|
79
|
+
/// <reference path="./Interaction/Manipulators/GestureCameraManipulator.d.ts" />
|
|
80
|
+
/// <reference path="./Interaction/Manipulators/CompositeVRManipulator.d.ts" />
|
|
81
|
+
/// <reference path="./Interaction/Manipulators/MouseCameraTrackballZoomManipulator.d.ts" />
|
|
82
|
+
/// <reference path="./Interaction/Manipulators/MouseCameraTrackballZoomToMouseManipulator.d.ts" />
|
|
83
|
+
/// <reference path="./Interaction/Manipulators/MouseRangeManipulator.d.ts" />
|
|
84
|
+
/// <reference path="./Interaction/Manipulators/MouseCameraTrackballRotateManipulator.d.ts" />
|
|
85
|
+
/// <reference path="./Interaction/Style/InteractorStyleManipulator.d.ts" />
|
|
86
|
+
/// <reference path="./Interaction/Style/InteractorStyleTrackballCamera.d.ts" />
|
|
87
|
+
/// <reference path="./Interaction/Style/InteractorStyleImage.d.ts" />
|
|
64
88
|
/// <reference path="./Interaction/Widgets/OrientationMarkerWidget.d.ts" />
|
|
65
|
-
/// <reference path="./
|
|
66
|
-
/// <reference path="./IO/Core/
|
|
89
|
+
/// <reference path="./Interaction/Widgets/OrientationMarkerWidget/Constants.d.ts" />
|
|
90
|
+
/// <reference path="./IO/Core/HttpDataSetReader.d.ts" />
|
|
67
91
|
/// <reference path="./IO/Core/DataAccessHelper.d.ts" />
|
|
92
|
+
/// <reference path="./IO/Core/DataAccessHelper/HtmlDataAccessHelper.d.ts" />
|
|
68
93
|
/// <reference path="./IO/Core/DataAccessHelper/JSZipDataAccessHelper.d.ts" />
|
|
69
|
-
/// <reference path="./IO/Core/DataAccessHelper/LiteHttpDataAccessHelper.d.ts" />
|
|
70
|
-
/// <reference path="./IO/Core/HttpDataSetReader.d.ts" />
|
|
71
94
|
/// <reference path="./IO/Core/HttpSceneLoader.d.ts" />
|
|
72
95
|
/// <reference path="./IO/Core/ImageStream/DefaultProtocol.d.ts" />
|
|
96
|
+
/// <reference path="./IO/Core/DataAccessHelper/HttpDataAccessHelper.d.ts" />
|
|
73
97
|
/// <reference path="./IO/Core/ImageStream.d.ts" />
|
|
74
98
|
/// <reference path="./IO/Core/ImageStream/ViewStream.d.ts" />
|
|
75
|
-
/// <reference path="./IO/Core/
|
|
99
|
+
/// <reference path="./IO/Core/DataAccessHelper/LiteHttpDataAccessHelper.d.ts" />
|
|
76
100
|
/// <reference path="./IO/Geometry/DracoReader.d.ts" />
|
|
77
|
-
/// <reference path="./IO/Geometry/PLYReader.d.ts" />
|
|
78
101
|
/// <reference path="./IO/Geometry/PLYWriter.d.ts" />
|
|
79
|
-
/// <reference path="./IO/Geometry/STLReader.d.ts" />
|
|
80
102
|
/// <reference path="./IO/Geometry/STLWriter.d.ts" />
|
|
81
|
-
/// <reference path="./IO/
|
|
82
|
-
/// <reference path="./IO/Misc/ITKImageReader.d.ts" />
|
|
103
|
+
/// <reference path="./IO/Geometry/STLReader.d.ts" />
|
|
83
104
|
/// <reference path="./IO/Misc/ITKPolyDataReader.d.ts" />
|
|
84
|
-
/// <reference path="./IO/
|
|
105
|
+
/// <reference path="./IO/Geometry/PLYReader.d.ts" />
|
|
106
|
+
/// <reference path="./IO/Core/WSLinkClient.d.ts" />
|
|
107
|
+
/// <reference path="./IO/Misc/ITKImageReader.d.ts" />
|
|
108
|
+
/// <reference path="./IO/Misc/ElevationReader.d.ts" />
|
|
85
109
|
/// <reference path="./IO/Misc/JSONReader.d.ts" />
|
|
86
|
-
/// <reference path="./IO/Misc/MTLReader.d.ts" />
|
|
87
|
-
/// <reference path="./IO/Misc/OBJReader.d.ts" />
|
|
88
|
-
/// <reference path="./IO/Misc/PDBReader.d.ts" />
|
|
89
110
|
/// <reference path="./IO/XML/XMLImageDataReader.d.ts" />
|
|
111
|
+
/// <reference path="./IO/Misc/JSONNucleoReader.d.ts" />
|
|
112
|
+
/// <reference path="./IO/Misc/PDBReader.d.ts" />
|
|
113
|
+
/// <reference path="./IO/Misc/MTLReader.d.ts" />
|
|
90
114
|
/// <reference path="./IO/XML/XMLPolyDataReader.d.ts" />
|
|
115
|
+
/// <reference path="./IO/Misc/OBJReader.d.ts" />
|
|
116
|
+
/// <reference path="./Proxy/Core/AbstractRepresentationProxy.d.ts" />
|
|
117
|
+
/// <reference path="./Proxy/Core/View2DProxy.d.ts" />
|
|
118
|
+
/// <reference path="./Proxy/Core/LookupTableProxy.d.ts" />
|
|
119
|
+
/// <reference path="./Proxy/Core/PiecewiseFunctionProxy.d.ts" />
|
|
91
120
|
/// <reference path="./IO/XML/XMLReader.d.ts" />
|
|
92
|
-
/// <reference path="./Rendering/Core/AbstractMapper.d.ts" />
|
|
93
121
|
/// <reference path="./Rendering/Core/AbstractMapper3D.d.ts" />
|
|
94
|
-
/// <reference path="./Rendering/Core/
|
|
122
|
+
/// <reference path="./Rendering/Core/AbstractMapper.d.ts" />
|
|
123
|
+
/// <reference path="./Proxy/Core/ViewProxy.d.ts" />
|
|
124
|
+
/// <reference path="./Proxy/Representations/SliceRepresentationProxy.d.ts" />
|
|
125
|
+
/// <reference path="./Rendering/Core/AxesActor.d.ts" />
|
|
126
|
+
/// <reference path="./Proxy/Core/ProxyManager.d.ts" />
|
|
127
|
+
/// <reference path="./Proxy/Core/SourceProxy.d.ts" />
|
|
128
|
+
/// <reference path="./Proxy/Representations/VolumeRepresentationProxy.d.ts" />
|
|
129
|
+
/// <reference path="./Rendering/Core/AnnotatedCubeActor.d.ts" />
|
|
95
130
|
/// <reference path="./Rendering/Core/Actor.d.ts" />
|
|
131
|
+
/// <reference path="./Rendering/Core/Coordinate.d.ts" />
|
|
96
132
|
/// <reference path="./Rendering/Core/Actor2D.d.ts" />
|
|
97
|
-
/// <reference path="./Rendering/Core/
|
|
98
|
-
/// <reference path="./Rendering/Core/
|
|
133
|
+
/// <reference path="./Rendering/Core/AbstractPicker.d.ts" />
|
|
134
|
+
/// <reference path="./Rendering/Core/ColorTransferFunction.d.ts" />
|
|
99
135
|
/// <reference path="./Rendering/Core/Camera.d.ts" />
|
|
100
136
|
/// <reference path="./Rendering/Core/CellPicker.d.ts" />
|
|
101
|
-
/// <reference path="./Rendering/Core/ColorTransferFunction.d.ts" />
|
|
102
|
-
/// <reference path="./Rendering/Core/Coordinate.d.ts" />
|
|
103
|
-
/// <reference path="./Rendering/Core/
|
|
104
|
-
/// <reference path="./Rendering/Core/
|
|
137
|
+
/// <reference path="./Rendering/Core/ColorTransferFunction/Constants.d.ts" />
|
|
138
|
+
/// <reference path="./Rendering/Core/Coordinate/Constants.d.ts" />
|
|
139
|
+
/// <reference path="./Rendering/Core/ColorTransferFunction/ColorMaps.d.ts" />
|
|
140
|
+
/// <reference path="./Rendering/Core/ImageMapper/Constants.d.ts" />
|
|
141
|
+
/// <reference path="./Rendering/Core/HardwareSelector.d.ts" />
|
|
105
142
|
/// <reference path="./Rendering/Core/ImageMapper.d.ts" />
|
|
106
|
-
/// <reference path="./Rendering/Core/ImageProperty.d.ts" />
|
|
107
143
|
/// <reference path="./Rendering/Core/ImageSlice.d.ts" />
|
|
108
|
-
/// <reference path="./Rendering/Core/
|
|
144
|
+
/// <reference path="./Rendering/Core/InteractorStyle.d.ts" />
|
|
145
|
+
/// <reference path="./Rendering/Core/Glyph3DMapper.d.ts" />
|
|
146
|
+
/// <reference path="./Rendering/Core/InteractorStyle/Constants.d.ts" />
|
|
147
|
+
/// <reference path="./Rendering/Core/Mapper/Constants.d.ts" />
|
|
148
|
+
/// <reference path="./Rendering/Core/Glyph3DMapper/Constants.d.ts" />
|
|
109
149
|
/// <reference path="./Rendering/Core/Mapper.d.ts" />
|
|
150
|
+
/// <reference path="./Rendering/Core/Light.d.ts" />
|
|
110
151
|
/// <reference path="./Rendering/Core/Mapper2D.d.ts" />
|
|
111
|
-
/// <reference path="./Rendering/Core/Picker.d.ts" />
|
|
112
|
-
/// <reference path="./Rendering/Core/PixelSpaceCallbackMapper.d.ts" />
|
|
113
|
-
/// <reference path="./Rendering/Core/PointPicker.d.ts" />
|
|
114
152
|
/// <reference path="./Rendering/Core/Prop.d.ts" />
|
|
115
|
-
/// <reference path="./Rendering/Core/
|
|
116
|
-
/// <reference path="./Rendering/Core/Property.d.ts" />
|
|
153
|
+
/// <reference path="./Rendering/Core/PixelSpaceCallbackMapper.d.ts" />
|
|
154
|
+
/// <reference path="./Rendering/Core/Property/Constants.d.ts" />
|
|
117
155
|
/// <reference path="./Rendering/Core/Property2D.d.ts" />
|
|
118
|
-
/// <reference path="./Rendering/Core/
|
|
119
|
-
/// <reference path="./Rendering/Core/
|
|
156
|
+
/// <reference path="./Rendering/Core/Property.d.ts" />
|
|
157
|
+
/// <reference path="./Rendering/Core/PointPicker.d.ts" />
|
|
158
|
+
/// <reference path="./Rendering/Core/Picker.d.ts" />
|
|
159
|
+
/// <reference path="./Rendering/Core/Property2D/Constants.d.ts" />
|
|
160
|
+
/// <reference path="./Rendering/Core/InteractorObserver.d.ts" />
|
|
120
161
|
/// <reference path="./Rendering/Core/RenderWindowInteractor.d.ts" />
|
|
162
|
+
/// <reference path="./Rendering/Core/Follower.d.ts" />
|
|
163
|
+
/// <reference path="./Rendering/Core/ImageProperty/Constants.d.ts" />
|
|
121
164
|
/// <reference path="./Rendering/Core/ScalarBarActor.d.ts" />
|
|
122
|
-
/// <reference path="./Rendering/Core/
|
|
165
|
+
/// <reference path="./Rendering/Core/RenderWindowInteractor/Constants.d.ts" />
|
|
166
|
+
/// <reference path="./Rendering/Core/RenderWindow.d.ts" />
|
|
167
|
+
/// <reference path="./Rendering/Core/Renderer.d.ts" />
|
|
123
168
|
/// <reference path="./Rendering/Core/SphereMapper.d.ts" />
|
|
124
|
-
/// <reference path="./Rendering/Core/StickMapper.d.ts" />
|
|
125
169
|
/// <reference path="./Rendering/Core/Texture.d.ts" />
|
|
126
|
-
/// <reference path="./Rendering/Core/
|
|
127
|
-
/// <reference path="./Rendering/
|
|
170
|
+
/// <reference path="./Rendering/Core/StickMapper.d.ts" />
|
|
171
|
+
/// <reference path="./Rendering/Misc/GenericRenderWindow.d.ts" />
|
|
128
172
|
/// <reference path="./Rendering/Core/VolumeMapper.d.ts" />
|
|
129
|
-
/// <reference path="./Rendering/Core/
|
|
130
|
-
/// <reference path="./Rendering/
|
|
173
|
+
/// <reference path="./Rendering/Core/ImageProperty.d.ts" />
|
|
174
|
+
/// <reference path="./Rendering/Core/Viewport.d.ts" />
|
|
175
|
+
/// <reference path="./Rendering/Core/Prop3D.d.ts" />
|
|
131
176
|
/// <reference path="./Rendering/Misc/FullScreenRenderWindow.d.ts" />
|
|
132
|
-
/// <reference path="./Rendering/Misc/GenericRenderWindow.d.ts" />
|
|
133
|
-
/// <reference path="./Rendering/Misc/RemoteView.d.ts" />
|
|
134
177
|
/// <reference path="./Rendering/Misc/RenderWindowWithControlBar.d.ts" />
|
|
135
|
-
/// <reference path="./Rendering/
|
|
178
|
+
/// <reference path="./Rendering/Core/VolumeProperty/Constants.d.ts" />
|
|
179
|
+
/// <reference path="./Rendering/Misc/CanvasView.d.ts" />
|
|
180
|
+
/// <reference path="./Rendering/Core/Volume.d.ts" />
|
|
181
|
+
/// <reference path="./Rendering/Core/Skybox.d.ts" />
|
|
182
|
+
/// <reference path="./Rendering/Core/VolumeMapper/Constants.d.ts" />
|
|
183
|
+
/// <reference path="./Rendering/Misc/RemoteView.d.ts" />
|
|
184
|
+
/// <reference path="./Rendering/Core/VolumeProperty.d.ts" />
|
|
136
185
|
/// <reference path="./Rendering/Misc/TextureLODsDownloader.d.ts" />
|
|
186
|
+
/// <reference path="./Rendering/Misc/SynchronizableRenderWindow.d.ts" />
|
|
187
|
+
/// <reference path="./Rendering/OpenGL/HardwareSelector/Constants.d.ts" />
|
|
188
|
+
/// <reference path="./Rendering/OpenGL/HardwareSelector.d.ts" />
|
|
137
189
|
/// <reference path="./Rendering/OpenGL/RenderWindow.d.ts" />
|
|
190
|
+
/// <reference path="./Rendering/SceneGraph/ViewNodeFactory.d.ts" />
|
|
138
191
|
/// <reference path="./Rendering/SceneGraph/RenderPass.d.ts" />
|
|
139
192
|
/// <reference path="./Rendering/SceneGraph/ViewNode.d.ts" />
|
|
140
|
-
/// <reference path="./
|
|
141
|
-
/// <reference path="./Widgets/
|
|
193
|
+
/// <reference path="./Widgets/Core/AbstractWidgetFactory.d.ts" />
|
|
194
|
+
/// <reference path="./Widgets/Core/StateBuilder.d.ts" />
|
|
195
|
+
/// <reference path="./Widgets/Core/WidgetManager.d.ts" />
|
|
142
196
|
/// <reference path="./Widgets/Manipulators/PlaneManipulator.d.ts" />
|
|
197
|
+
/// <reference path="./Widgets/Core/WidgetManager/Constants.d.ts" />
|
|
198
|
+
/// <reference path="./Widgets/Manipulators/LineManipulator.d.ts" />
|
|
199
|
+
/// <reference path="./Widgets/Core/AbstractWidget.d.ts" />
|
|
200
|
+
/// <reference path="./Widgets/Core/WidgetState.d.ts" />
|
|
143
201
|
/// <reference path="./Widgets/Manipulators/TrackballManipulator.d.ts" />
|
|
144
202
|
/// <reference path="./Widgets/Representations/ResliceCursorContextRepresentation.d.ts" />
|
|
145
203
|
/// <reference path="./Widgets/Representations/WidgetRepresentation.d.ts" />
|
|
204
|
+
/// <reference path="./Widgets/Widgets3D/InteractiveOrientationWidget.d.ts" />
|
|
146
205
|
/// <reference path="./Widgets/Widgets3D/SphereWidget.d.ts" />
|
|
147
206
|
/// <reference path="./Common/Core/Math.d.ts" />
|