@kitware/vtk.js 24.16.3 → 24.16.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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { vtkObject, vtkSubscription } from './../../interfaces';
|
|
2
|
+
import vtkImageStream from './ImageStream';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* Bind optional dependency from WSLink to our current class.
|
|
@@ -134,7 +135,7 @@ export interface vtkWSLinkClient extends vtkObject {
|
|
|
134
135
|
/**
|
|
135
136
|
*
|
|
136
137
|
*/
|
|
137
|
-
getImageStream():
|
|
138
|
+
getImageStream(): vtkImageStream;
|
|
138
139
|
|
|
139
140
|
/**
|
|
140
141
|
*
|
|
@@ -47,10 +47,10 @@ export interface vtkImageMapper extends vtkAbstractMapper {
|
|
|
47
47
|
/**
|
|
48
48
|
* Get the bounds for a given slice as [xmin, xmax, ymin, ymax,zmin, zmax].
|
|
49
49
|
* @param {Number} [slice] The slice index.
|
|
50
|
-
* @param {Number} [
|
|
50
|
+
* @param {Number} [halfThickness] Half the slice thickness in index space (unit voxel spacing).
|
|
51
51
|
* @return {Number[]} The bounds for a given slice.
|
|
52
52
|
*/
|
|
53
|
-
getBoundsForSlice(slice?: number,
|
|
53
|
+
getBoundsForSlice(slice?: number, halfThickness?: number): number[];
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
@@ -296,14 +296,14 @@ function vtkImageMapper(publicAPI, model) {
|
|
|
296
296
|
|
|
297
297
|
publicAPI.getBoundsForSlice = function () {
|
|
298
298
|
var slice = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : model.slice;
|
|
299
|
-
var
|
|
299
|
+
var halfThickness = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
|
|
300
300
|
var image = publicAPI.getInputData();
|
|
301
301
|
|
|
302
302
|
if (!image) {
|
|
303
303
|
return createUninitializedBounds();
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
var extent = image.
|
|
306
|
+
var extent = image.getSpatialExtent();
|
|
307
307
|
|
|
308
308
|
var _publicAPI$getClosest3 = publicAPI.getClosestIJKAxis(),
|
|
309
309
|
ijkMode = _publicAPI$getClosest3.ijkMode;
|
|
@@ -317,18 +317,18 @@ function vtkImageMapper(publicAPI, model) {
|
|
|
317
317
|
|
|
318
318
|
switch (ijkMode) {
|
|
319
319
|
case SlicingMode.I:
|
|
320
|
-
extent[0] = nSlice -
|
|
321
|
-
extent[1] = nSlice +
|
|
320
|
+
extent[0] = nSlice - halfThickness;
|
|
321
|
+
extent[1] = nSlice + halfThickness;
|
|
322
322
|
break;
|
|
323
323
|
|
|
324
324
|
case SlicingMode.J:
|
|
325
|
-
extent[2] = nSlice -
|
|
326
|
-
extent[3] = nSlice +
|
|
325
|
+
extent[2] = nSlice - halfThickness;
|
|
326
|
+
extent[3] = nSlice + halfThickness;
|
|
327
327
|
break;
|
|
328
328
|
|
|
329
329
|
case SlicingMode.K:
|
|
330
|
-
extent[4] = nSlice -
|
|
331
|
-
extent[5] = nSlice +
|
|
330
|
+
extent[4] = nSlice - halfThickness;
|
|
331
|
+
extent[5] = nSlice + halfThickness;
|
|
332
332
|
break;
|
|
333
333
|
}
|
|
334
334
|
|
|
@@ -363,7 +363,9 @@ function vtkOpenGLRenderWindow(publicAPI, model) {
|
|
|
363
363
|
translateZ *= physicalScale;
|
|
364
364
|
physicalTranslation[2] += translateZ;
|
|
365
365
|
camera.setPhysicalScale(physicalScale);
|
|
366
|
-
camera.setPhysicalTranslation(physicalTranslation);
|
|
366
|
+
camera.setPhysicalTranslation(physicalTranslation); // Clip at 0.1m, 100.0m in physical space by default
|
|
367
|
+
|
|
368
|
+
camera.setClippingRange(0.1 * physicalScale, 100.0 * physicalScale);
|
|
367
369
|
};
|
|
368
370
|
|
|
369
371
|
publicAPI.stopXR = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|