@woosh/meep-engine 2.117.22 → 2.117.24
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 +10 -0
- package/build/meep.min.js +1 -1
- package/build/meep.module.js +10 -0
- package/package.json +1 -1
- package/src/core/bvh2/bvh3/BVH.d.ts +2 -0
- package/src/core/bvh2/bvh3/BVH.d.ts.map +1 -1
- package/src/core/bvh2/bvh3/BVH.js +10 -0
- package/src/engine/graphics/render/frame_graph/RenderGraphBuilder.d.ts +4 -0
- package/src/engine/graphics/render/frame_graph/RenderGraphBuilder.d.ts.map +1 -1
- package/src/engine/graphics/render/frame_graph/RenderGraphBuilder.js +7 -0
package/build/meep.cjs
CHANGED
|
@@ -52200,6 +52200,16 @@ class BVH {
|
|
|
52200
52200
|
*/
|
|
52201
52201
|
__data_buffer = new ArrayBuffer(INITIAL_CAPACITY * ELEMENT_WORD_COUNT * 4);
|
|
52202
52202
|
|
|
52203
|
+
/**
|
|
52204
|
+
* Access raw data
|
|
52205
|
+
* Useful for serialization
|
|
52206
|
+
* If you intend to modify the data directly - make sure you fully understand the implications of doing so
|
|
52207
|
+
* @returns {ArrayBuffer}
|
|
52208
|
+
*/
|
|
52209
|
+
get data_buffer(){
|
|
52210
|
+
return this.__data_buffer;
|
|
52211
|
+
}
|
|
52212
|
+
|
|
52203
52213
|
/**
|
|
52204
52214
|
*
|
|
52205
52215
|
* @type {Float32Array}
|