@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 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}