@kitware/vtk.js 24.2.1 → 24.2.2
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/Rendering/Core/CubeAxesActor.js +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -696,7 +696,7 @@ function vtkCubeAxesActor(publicAPI, model) {
|
|
|
696
696
|
publicAPI.getBounds = function () {
|
|
697
697
|
publicAPI.update();
|
|
698
698
|
vtkBoundingBox.setBounds(model.bounds, model.gridActor.getBounds());
|
|
699
|
-
vtkBoundingBox.scaleAboutCenter(model.bounds, model.boundsScaleFactor);
|
|
699
|
+
vtkBoundingBox.scaleAboutCenter(model.bounds, model.boundsScaleFactor, model.boundsScaleFactor, model.boundsScaleFactor);
|
|
700
700
|
return model.bounds;
|
|
701
701
|
};
|
|
702
702
|
} // ----------------------------------------------------------------------------
|
package/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/// <reference path="./interfaces.d.ts" />
|
|
3
3
|
/// <reference path="./macros.d.ts" />
|
|
4
4
|
/// <reference path="./vtk.d.ts" />
|
|
5
|
-
/// <reference path="./Common/Core/CellArray.d.ts" />
|
|
6
5
|
/// <reference path="./Common/Core/Base64.d.ts" />
|
|
6
|
+
/// <reference path="./Common/Core/CellArray.d.ts" />
|
|
7
7
|
/// <reference path="./Common/Core/DataArray.d.ts" />
|
|
8
8
|
/// <reference path="./Common/Core/Endian.d.ts" />
|
|
9
9
|
/// <reference path="./Common/Core/HalfFloat.d.ts" />
|
|
@@ -135,8 +135,8 @@
|
|
|
135
135
|
/// <reference path="./Rendering/Misc/SynchronizableRenderWindow.d.ts" />
|
|
136
136
|
/// <reference path="./Rendering/Misc/TextureLODsDownloader.d.ts" />
|
|
137
137
|
/// <reference path="./Rendering/OpenGL/RenderWindow.d.ts" />
|
|
138
|
-
/// <reference path="./Rendering/SceneGraph/ViewNode.d.ts" />
|
|
139
138
|
/// <reference path="./Rendering/SceneGraph/RenderPass.d.ts" />
|
|
139
|
+
/// <reference path="./Rendering/SceneGraph/ViewNode.d.ts" />
|
|
140
140
|
/// <reference path="./Rendering/SceneGraph/ViewNodeFactory.d.ts" />
|
|
141
141
|
/// <reference path="./Widgets/Manipulators/LineManipulator.d.ts" />
|
|
142
142
|
/// <reference path="./Widgets/Manipulators/PlaneManipulator.d.ts" />
|