@woosh/meep-engine 2.117.19 → 2.117.21
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/README.md +2 -2
- package/build/meep.cjs +2 -0
- package/build/meep.min.js +1 -1
- package/build/meep.module.js +2 -0
- package/package.json +1 -1
- package/src/core/bvh2/bvh3/ebvh_build_for_geometry_morton.d.ts +1 -1
- package/src/core/bvh2/bvh3/ebvh_build_for_geometry_morton.d.ts.map +1 -1
- package/src/core/bvh2/bvh3/ebvh_build_for_geometry_morton.js +25 -5
- package/src/core/collection/map/HashMap.d.ts.map +1 -1
- package/src/core/collection/map/HashMap.js +2 -0
- package/src/core/geom/3d/mat4/m4_invert.d.ts +3 -3
- package/src/core/geom/3d/mat4/m4_invert.d.ts.map +1 -1
- package/src/core/geom/3d/mat4/m4_invert.js +2 -2
- package/src/engine/graphics/sh3/path_tracer/BufferedGeometryBVH.d.ts.map +1 -1
- package/src/engine/graphics/sh3/path_tracer/BufferedGeometryBVH.js +3 -2
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ To help get you started, various samples are provided under `/samples` folder. F
|
|
|
11
11
|
|
|
12
12
|
## Documentation
|
|
13
13
|
|
|
14
|
-
[Engine Documentation](http://meep-engine.company-named.com:8080/docs/
|
|
14
|
+
[Engine Documentation](http://meep-engine.company-named.com:8080/docs/getting_started/Installation)
|
|
15
15
|
|
|
16
16
|
## Features
|
|
17
17
|
|
|
@@ -53,4 +53,4 @@ You're free to use it or not, the engine works just fine without it. The system
|
|
|
53
53
|
For more information, please refer to the documentation
|
|
54
54
|
|
|
55
55
|
---
|
|
56
|
-
Copyright ©
|
|
56
|
+
Copyright © 2024 Company Named Limited, All Rights Reserved
|
package/build/meep.cjs
CHANGED
|
@@ -60641,8 +60641,10 @@ class HashMap {
|
|
|
60641
60641
|
|
|
60642
60642
|
if (new_index !== existing_entry_index) {
|
|
60643
60643
|
// move entries to the new position, compacting holes
|
|
60644
|
+
const temp = entries[new_index];
|
|
60644
60645
|
|
|
60645
60646
|
entries[new_index] = entries[existing_entry_index];
|
|
60647
|
+
entries[existing_entry_index] = temp;
|
|
60646
60648
|
}
|
|
60647
60649
|
|
|
60648
60650
|
let bin_index = this.compute_bin_index(hash);
|