@kitware/vtk.js 19.2.11 → 19.2.12
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/OpenGL/CellArrayBufferObject.js +2 -2
- package/Rendering/OpenGL/PolyDataMapper.js +1 -1
- package/Rendering/OpenGL/VolumeMapper.js +1 -1
- package/Rendering/WebGPU/Renderer.js +1 -1
- package/Rendering/WebGPU/StickMapper.js +1 -1
- package/Utilities/TestResults/TESTS-Chrome_Headless_93.0.4577.63_(Linux_x86_64).xml +1032 -1032
- package/Widgets/Representations/ArrowHandleRepresentation.js +1 -1
- package/Widgets/Widgets3D/ImageCroppingWidget/helpers.js +1 -1
- package/Widgets/Widgets3D/ShapeWidget/behavior.js +1 -1
- package/Widgets/Widgets3D/SplineWidget/behavior.js +1 -1
- package/package.json +1 -1
- package/vendor/gl-matrix/esm/mat4.js +1 -1
- package/vendor/gl-matrix/esm/quat.js +1 -1
- package/vendor/gl-matrix/esm/vec3.js +1 -1
|
@@ -18,7 +18,7 @@ import { ScalarMode } from '../../Rendering/Core/Mapper/Constants.js';
|
|
|
18
18
|
import { RenderingTypes } from '../Core/WidgetManager/Constants.js';
|
|
19
19
|
import { i as identity } from '../../vendor/gl-matrix/esm/mat4.js';
|
|
20
20
|
import { f as fromMat4, i as identity$1, a as invert, m as multiply } from '../../vendor/gl-matrix/esm/mat3.js';
|
|
21
|
-
import {
|
|
21
|
+
import { m as transformMat3 } from '../../vendor/gl-matrix/esm/vec3.js';
|
|
22
22
|
|
|
23
23
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
24
24
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
2
|
-
import { t as transformMat4,
|
|
2
|
+
import { t as transformMat4, q as create, r as transformQuat } from '../../../vendor/gl-matrix/esm/vec3.js';
|
|
3
3
|
import { c as create$1 } from '../../../vendor/gl-matrix/esm/quat.js';
|
|
4
4
|
import { n as getRotation } from '../../../vendor/gl-matrix/esm/mat4.js';
|
|
5
5
|
|
|
@@ -3,7 +3,7 @@ import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
|
3
3
|
import macro from '../../../macros.js';
|
|
4
4
|
import { ShapeBehavior, BehaviorCategory } from './Constants.js';
|
|
5
5
|
import vtkLabelRepresentation from '../../../Interaction/Widgets/LabelRepresentation.js';
|
|
6
|
-
import { h as distance, a as subtract, d as dot, j as add, c as cross,
|
|
6
|
+
import { h as distance, a as subtract, d as dot, j as add, c as cross, u as squaredDistance } from '../../../vendor/gl-matrix/esm/vec3.js';
|
|
7
7
|
|
|
8
8
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
|
|
2
2
|
import macro from '../../../macros.js';
|
|
3
|
-
import {
|
|
3
|
+
import { u as squaredDistance, h as distance } from '../../../vendor/gl-matrix/esm/vec3.js';
|
|
4
4
|
|
|
5
5
|
function widgetBehavior(publicAPI, model) {
|
|
6
6
|
model.classHierarchy.push('vtkSplineWidgetProp');
|
package/package.json
CHANGED
|
@@ -1865,4 +1865,4 @@ var mat4 = /*#__PURE__*/Object.freeze({
|
|
|
1865
1865
|
sub: sub
|
|
1866
1866
|
});
|
|
1867
1867
|
|
|
1868
|
-
export { rotateX as a, rotateY as b, rotateZ as c, copy as d, fromTranslation as e, fromRotation as f, invert as g, exactEquals as h, identity as i, transpose as j, fromQuat as k, lookAt as l, multiply as m, getRotation as n, ortho as o,
|
|
1868
|
+
export { rotateX as a, rotateY as b, rotateZ as c, copy as d, fromTranslation as e, fromRotation as f, invert as g, exactEquals as h, identity as i, transpose as j, fromQuat as k, lookAt as l, multiply as m, getRotation as n, ortho as o, mat4 as p, fromRotationTranslationScale as q, rotate as r, scale as s, translate as t };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { A as ARRAY_TYPE, E as EPSILON } from './common.js';
|
|
2
2
|
import { c as create$2 } from './mat3.js';
|
|
3
|
-
import {
|
|
3
|
+
import { q as create$1, y as fromValues$1, d as dot, c as cross, p as len, n as normalize$1 } from './vec3.js';
|
|
4
4
|
import { f as fromValues$2, n as normalize$2 } from './vec4.js';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -839,4 +839,4 @@ var vec3 = /*#__PURE__*/Object.freeze({
|
|
|
839
839
|
forEach: forEach
|
|
840
840
|
});
|
|
841
841
|
|
|
842
|
-
export { subtract as a, scale as b, cross as c, dot as d, scaleAndAdd as e, negate as f, exactEquals as g, distance as h, copy as i, add as j,
|
|
842
|
+
export { subtract as a, scale as b, cross as c, dot as d, scaleAndAdd as e, negate as f, exactEquals as g, distance as h, copy as i, add as j, divide as k, length as l, transformMat3 as m, normalize as n, sub as o, len as p, create as q, transformQuat as r, set as s, transformMat4 as t, squaredDistance as u, vec3 as v, equals as w, inverse as x, fromValues as y };
|