@limitlesspc/std 0.21.0 → 0.21.1

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.
@@ -915,11 +915,11 @@ var Vec2 = class _Vec2 extends Float32Array {
915
915
  }
916
916
  div(x, y) {
917
917
  if (typeof x === "number") {
918
- this.x *= x;
919
- this.y *= y ?? x;
918
+ this.x /= x;
919
+ this.y /= y ?? x;
920
920
  } else {
921
- this.x *= x[0];
922
- this.y *= x[1];
921
+ this.x /= x[0];
922
+ this.y /= x[1];
923
923
  }
924
924
  return this;
925
925
  }
package/dist/events.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sum
3
- } from "./chunk-AZEZMYQ5.js";
3
+ } from "./chunk-WNQNVZFS.js";
4
4
  import "./chunk-O3YCU3KN.js";
5
5
  import "./chunk-65SNM7MP.js";
6
6
  import {
package/dist/gfx/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  vec3
3
- } from "../chunk-AZEZMYQ5.js";
3
+ } from "../chunk-WNQNVZFS.js";
4
4
  import "../chunk-O3YCU3KN.js";
5
5
  import "../chunk-65SNM7MP.js";
6
6
  import "../chunk-WBSY6KRH.js";
@@ -58,7 +58,7 @@ import {
58
58
  vec2,
59
59
  vec3,
60
60
  vec4
61
- } from "../chunk-AZEZMYQ5.js";
61
+ } from "../chunk-WNQNVZFS.js";
62
62
  import "../chunk-O3YCU3KN.js";
63
63
  import "../chunk-65SNM7MP.js";
64
64
  import "../chunk-WBSY6KRH.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@limitlesspc/std",
3
3
  "type": "module",
4
- "version": "0.21.0",
4
+ "version": "0.21.1",
5
5
  "description": "A standard library for JavaScript",
6
6
  "license": "MIT",
7
7
  "publishConfig": {