math-rust-lib 0.2.1 → 0.2.3
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/math_rust_lib_bg.js +1 -2
- package/math_rust_lib_bg.wasm +0 -0
- package/package.json +1 -1
package/math_rust_lib_bg.js
CHANGED
|
@@ -642,8 +642,7 @@ export class Vec3 {
|
|
|
642
642
|
*/
|
|
643
643
|
subtract(other) {
|
|
644
644
|
_assertClass(other, Vec3);
|
|
645
|
-
|
|
646
|
-
const ret = wasm.vec3_subtract(this.__wbg_ptr, ptr0);
|
|
645
|
+
const ret = wasm.vec3_subtract(this.__wbg_ptr, other.__wbg_ptr);
|
|
647
646
|
return Vec3.__wrap(ret);
|
|
648
647
|
}
|
|
649
648
|
/**
|
package/math_rust_lib_bg.wasm
CHANGED
|
Binary file
|