zincjs 1.19.1 → 1.19.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/package.json
CHANGED
|
@@ -445,9 +445,7 @@ async function createPrimitivesFromNIFTI(url, useHeaderInfo, maskURL, textureSet
|
|
|
445
445
|
}
|
|
446
446
|
if (timeEnabled && textureP) {
|
|
447
447
|
for (let i = 1; i < url.length; i++) {
|
|
448
|
-
console.log(i, url[i])
|
|
449
448
|
const tArray = await createTextureFromNIFTI(url[i], maskURL, optionsIn);
|
|
450
|
-
console.log(tArray)
|
|
451
449
|
textureP.addTextureArray(tArray);
|
|
452
450
|
}
|
|
453
451
|
textureP.timeEnabled = true;
|
|
@@ -47,7 +47,6 @@ const TexturePrimitive = function (textureIn) {
|
|
|
47
47
|
if (this.textureList.length === 0 && this.texture) {
|
|
48
48
|
this.textureList.push(this.texture);
|
|
49
49
|
}
|
|
50
|
-
console.log("addTextureArray", tArray)
|
|
51
50
|
if (tArray && tArray.isTextureArray) {
|
|
52
51
|
this.textureList.push(tArray);
|
|
53
52
|
}
|
|
@@ -415,7 +415,6 @@ const TextureSlides = function (textureIn) {
|
|
|
415
415
|
const t0 = Math.floor(iTime);
|
|
416
416
|
const t1 = Math.ceil(iTime);
|
|
417
417
|
const ratio = iTime - t0;
|
|
418
|
-
console.log("update", t0, t1, ratio)
|
|
419
418
|
this.morph.children.forEach((mesh) => {
|
|
420
419
|
const material = mesh.material;
|
|
421
420
|
if (material.type === "ShaderMaterial") {
|