@kitware/vtk.js 21.1.2 → 21.1.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.
package/BREAKING_CHANGES.md
CHANGED
|
@@ -8,6 +8,10 @@ In ShapeWidget:
|
|
|
8
8
|
|
|
9
9
|
RectangleWidget and EllipseWidget handles now scale up automatically.
|
|
10
10
|
|
|
11
|
+
## From 19.2 to 19.3
|
|
12
|
+
|
|
13
|
+
Node >=12 is required
|
|
14
|
+
|
|
11
15
|
## From 18.x to 19
|
|
12
16
|
|
|
13
17
|
vtkWidgetRepresentation.updateActorVisibility(...) lost the widgetVisibility parameter.
|
|
@@ -698,11 +698,6 @@ function vtkTubeFilter(publicAPI, model) {
|
|
|
698
698
|
numberOfComponents: 3
|
|
699
699
|
});
|
|
700
700
|
var numNormals = 3 * numNewPts;
|
|
701
|
-
|
|
702
|
-
if (model.capping) {
|
|
703
|
-
numNormals = 3 * (numNewPts + 2 * model.numberOfSides);
|
|
704
|
-
}
|
|
705
|
-
|
|
706
701
|
var newNormalsData = new Float32Array(numNormals);
|
|
707
702
|
var newNormals = vtkDataArray.newInstance({
|
|
708
703
|
numberOfComponents: 3,
|