@cornerstonejs/core 2.18.2 → 2.18.3
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.
|
@@ -1222,14 +1222,12 @@ class StackViewport extends Viewport {
|
|
|
1222
1222
|
const isYVoxelsMatching = yVoxels === image.rows;
|
|
1223
1223
|
const isRowCosinesMatching = isEqual(imagePlaneModule.rowCosines, rowCosines);
|
|
1224
1224
|
const isColumnCosinesMatching = isEqual(imagePlaneModule.columnCosines, columnCosines);
|
|
1225
|
-
const isDataTypeMatching = dataType === image.voxelManager.getScalarData().constructor.name;
|
|
1226
1225
|
const result = isXSpacingValid &&
|
|
1227
1226
|
isYSpacingValid &&
|
|
1228
1227
|
isXVoxelsMatching &&
|
|
1229
1228
|
isYVoxelsMatching &&
|
|
1230
1229
|
isRowCosinesMatching &&
|
|
1231
|
-
isColumnCosinesMatching
|
|
1232
|
-
isDataTypeMatching;
|
|
1230
|
+
isColumnCosinesMatching;
|
|
1233
1231
|
return result;
|
|
1234
1232
|
}
|
|
1235
1233
|
_updateVTKImageDataFromCornerstoneImage(image) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cornerstonejs/core",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.3",
|
|
4
4
|
"description": "Cornerstone3D Core",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"type": "individual",
|
|
83
83
|
"url": "https://ohif.org/donate"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "cc92461656c37883686759ab4b495219046f4be7"
|
|
86
86
|
}
|