pimath 0.1.31 → 0.1.32

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/dist/pimath.js CHANGED
@@ -4134,7 +4134,7 @@ class Ui {
4134
4134
  });
4135
4135
  a(this, "relativePosition", (e) => {
4136
4136
  const t = this.center.distanceTo(e.center).value, i = this.radius.value, n = e.radius.value;
4137
- return t > i + n ? 1 : t === i + n ? 4 : t === Math.abs(i - n) ? 3 : t < Math.abs(i - n) ? 0 : t === 0 ? i === n ? 5 : 6 : 2;
4137
+ return t > i + n ? 1 : t === i + n ? 4 : t === 0 ? i === n ? 5 : 6 : t === Math.abs(i - n) ? 3 : t < Math.abs(i - n) ? 0 : 2;
4138
4138
  });
4139
4139
  a(this, "isPointOnSphere", (e) => {
4140
4140
  var t;