We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0973512 commit 1cb7040Copy full SHA for 1cb7040
Sources/Common/Core/DataArray/index.js
@@ -293,19 +293,17 @@ function vtkDataArray(publicAPI, model) {
293
const range = {
294
min,
295
max,
296
- component: i,
297
};
298
ranges.push(range);
299
}
300
// where the number of components is greater than 1, the last element in
301
// the range array is the min,max magnitude of the entire dataset.
302
if (model.numberOfComponents > 1) {
303
- /** @type {import('../../../interfaces').vtkRange} */
304
const [min, max] = publicAPI.getRange(-1);
+ /** @type {import('../../../interfaces').vtkRange} */
305
306
307
308
- component: -1,
309
310
311
0 commit comments