@woosh/meep-engine 2.86.3 → 2.86.4
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/build/meep.cjs +1 -1
- package/build/meep.min.js +1 -1
- package/build/meep.module.js +1 -1
- package/package.json +1 -1
package/build/meep.module.js
CHANGED
|
@@ -49572,7 +49572,7 @@ class Sampler2D {
|
|
|
49572
49572
|
const i0 = (y * width + x) * itemSize;
|
|
49573
49573
|
|
|
49574
49574
|
for (let i = 0; i < itemSize; i++) {
|
|
49575
|
-
this.data[i0 + i] =
|
|
49575
|
+
this.data[i0 + i] = data[i];
|
|
49576
49576
|
}
|
|
49577
49577
|
}
|
|
49578
49578
|
|
package/package.json
CHANGED