@lagless/math 0.0.36 → 0.0.39

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/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+ Creative Commons Attribution-NonCommercial 4.0 International
2
+
3
+ Copyright (c) 2025 Lagless
4
+
5
+ This work is licensed under the Creative Commons
6
+ Attribution-NonCommercial 4.0 International License.
7
+
8
+ You are free to:
9
+
10
+ Share — copy and redistribute the material in any medium or format
11
+ Adapt — remix, transform, and build upon the material
12
+
13
+ Under the following terms:
14
+
15
+ Attribution — You must give appropriate credit, provide a link to
16
+ the license, and indicate if changes were made. You may do so in
17
+ any reasonable manner, but not in any way that suggests the licensor
18
+ endorses you or your use.
19
+
20
+ NonCommercial — You may not use the material for commercial purposes.
21
+
22
+ No additional restrictions — You may not apply legal terms or
23
+ technological measures that legally restrict others from doing
24
+ anything the license permits.
25
+
26
+ Full license text: https://creativecommons.org/licenses/by-nc/4.0/legalcode
package/dist/index.d.ts CHANGED
@@ -1,4 +1,8 @@
1
1
  export * from './lib/math-ops.js';
2
2
  export * from './lib/vector2.js';
3
3
  export * from './lib/vector2-buffers.js';
4
+ export * from './lib/vector3.js';
5
+ export * from './lib/vector3-buffers.js';
6
+ export * from './lib/quaternion.js';
7
+ export * from './lib/quaternion-buffers.js';
4
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC"}
package/dist/index.js CHANGED
@@ -1,3 +1,7 @@
1
1
  export * from './lib/math-ops.js';
2
2
  export * from './lib/vector2.js';
3
3
  export * from './lib/vector2-buffers.js';
4
+ export * from './lib/vector3.js';
5
+ export * from './lib/vector3-buffers.js';
6
+ export * from './lib/quaternion.js';
7
+ export * from './lib/quaternion-buffers.js';
@@ -0,0 +1,5 @@
1
+ import { Quaternion } from './quaternion.js';
2
+ export declare const QUATERNION_BUFFER_1: Quaternion;
3
+ export declare const QUATERNION_BUFFER_2: Quaternion;
4
+ export declare const QUATERNION_BUFFER_3: Quaternion;
5
+ //# sourceMappingURL=quaternion-buffers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quaternion-buffers.d.ts","sourceRoot":"","sources":["../../src/lib/quaternion-buffers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C,eAAO,MAAM,mBAAmB,YAAmB,CAAC;AACpD,eAAO,MAAM,mBAAmB,YAAmB,CAAC;AACpD,eAAO,MAAM,mBAAmB,YAAmB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { Quaternion } from './quaternion.js';
2
+ export const QUATERNION_BUFFER_1 = new Quaternion();
3
+ export const QUATERNION_BUFFER_2 = new Quaternion();
4
+ export const QUATERNION_BUFFER_3 = new Quaternion();
@@ -0,0 +1,53 @@
1
+ import { IVector3Like, Vector3 } from './vector3.js';
2
+ export interface IQuaternionLike {
3
+ x: number;
4
+ y: number;
5
+ z: number;
6
+ w: number;
7
+ }
8
+ export declare class Quaternion {
9
+ x: number;
10
+ y: number;
11
+ z: number;
12
+ w: number;
13
+ static readonly IDENTITY: Quaternion;
14
+ static readonly EPSILON = 1e-8;
15
+ constructor(x?: number, y?: number, z?: number, w?: number);
16
+ setInPlace(x: number, y: number, z: number, w: number): Quaternion;
17
+ copyFrom(other: IQuaternionLike): Quaternion;
18
+ copyToRef(ref: IQuaternionLike): IQuaternionLike;
19
+ clone(): Quaternion;
20
+ lengthSquared(): number;
21
+ length(): number;
22
+ dot(other: IQuaternionLike): number;
23
+ normalizeInPlace(): Quaternion;
24
+ normalizeToRef(ref: Quaternion): Quaternion;
25
+ normalizedToNew(): Quaternion;
26
+ conjugateInPlace(): Quaternion;
27
+ conjugateToRef(ref: Quaternion): Quaternion;
28
+ conjugateToNew(): Quaternion;
29
+ invertInPlace(): Quaternion;
30
+ invertToNew(): Quaternion;
31
+ multiplyToNew(other: IQuaternionLike): Quaternion;
32
+ multiplyToRef(other: IQuaternionLike, ref: Quaternion): Quaternion;
33
+ multiplyInPlace(other: IQuaternionLike): Quaternion;
34
+ rotateVector3ToRef(v: IVector3Like, ref: Vector3): Vector3;
35
+ rotateVector3ToNew(v: IVector3Like): Vector3;
36
+ slerpToRef(to: IQuaternionLike, t: number, ref: Quaternion): Quaternion;
37
+ slerpToNew(to: IQuaternionLike, t: number): Quaternion;
38
+ slerpInPlace(to: IQuaternionLike, t: number): Quaternion;
39
+ /** Extract yaw (Y-axis rotation) from this quaternion. */
40
+ toEulerYaw(): number;
41
+ equals(other: IQuaternionLike): boolean;
42
+ approxEquals(other: IQuaternionLike, eps?: number): boolean;
43
+ /** Create quaternion from axis-angle. Axis should be normalized. */
44
+ static fromAxisAngle(axis: IVector3Like, angle: number): Quaternion;
45
+ static fromAxisAngleToRef(axis: IVector3Like, angle: number, ref: Quaternion): Quaternion;
46
+ /** Create quaternion from Euler angles (Y-up convention: yaw=Y, pitch=X, roll=Z). */
47
+ static fromYawPitchRoll(yaw: number, pitch: number, roll: number): Quaternion;
48
+ static fromYawPitchRollToRef(yaw: number, pitch: number, roll: number, ref: Quaternion): Quaternion;
49
+ /** Create quaternion representing rotation around Y axis. */
50
+ static fromYaw(yaw: number): Quaternion;
51
+ static fromYawToRef(yaw: number, ref: Quaternion): Quaternion;
52
+ }
53
+ //# sourceMappingURL=quaternion.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quaternion.d.ts","sourceRoot":"","sources":["../../src/lib/quaternion.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAErD,MAAM,WAAW,eAAe;IAC9B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX;AAED,qBAAa,UAAU;IAIF,CAAC;IAAa,CAAC;IAAa,CAAC;IAAa,CAAC;IAH9D,gBAAuB,QAAQ,aAA8B;IAC7D,gBAAuB,OAAO,QAAQ;gBAEnB,CAAC,SAAI,EAAS,CAAC,SAAI,EAAS,CAAC,SAAI,EAAS,CAAC,SAAI;IAI3D,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,UAAU;IAQlE,QAAQ,CAAC,KAAK,EAAE,eAAe,GAAG,UAAU;IAQ5C,SAAS,CAAC,GAAG,EAAE,eAAe,GAAG,eAAe;IAQhD,KAAK,IAAI,UAAU;IAMnB,aAAa,IAAI,MAAM;IAIvB,MAAM,IAAI,MAAM;IAIhB,GAAG,CAAC,KAAK,EAAE,eAAe,GAAG,MAAM;IAMnC,gBAAgB,IAAI,UAAU;IAY9B,cAAc,CAAC,GAAG,EAAE,UAAU,GAAG,UAAU;IAiB3C,eAAe,IAAI,UAAU;IAM7B,gBAAgB,IAAI,UAAU;IAO9B,cAAc,CAAC,GAAG,EAAE,UAAU,GAAG,UAAU;IAQ3C,cAAc,IAAI,UAAU;IAI5B,aAAa,IAAI,UAAU;IAY3B,WAAW,IAAI,UAAU;IAMzB,aAAa,CAAC,KAAK,EAAE,eAAe,GAAG,UAAU;IAIjD,aAAa,CAAC,KAAK,EAAE,eAAe,EAAE,GAAG,EAAE,UAAU,GAAG,UAAU;IAUlE,eAAe,CAAC,KAAK,EAAE,eAAe,GAAG,UAAU;IAMnD,kBAAkB,CAAC,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAc1D,kBAAkB,CAAC,CAAC,EAAE,YAAY,GAAG,OAAO;IAM5C,UAAU,CAAC,EAAE,EAAE,eAAe,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,GAAG,UAAU;IAiCvE,UAAU,CAAC,EAAE,EAAE,eAAe,EAAE,CAAC,EAAE,MAAM,GAAG,UAAU;IAItD,YAAY,CAAC,EAAE,EAAE,eAAe,EAAE,CAAC,EAAE,MAAM,GAAG,UAAU;IAM/D,0DAA0D;IACnD,UAAU,IAAI,MAAM;IAQpB,MAAM,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO;IAIvC,YAAY,CAAC,KAAK,EAAE,eAAe,EAAE,GAAG,SAAqB,GAAG,OAAO;IAW9E,oEAAoE;WACtD,aAAa,CAAC,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,GAAG,UAAU;WAI5D,kBAAkB,CAAC,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,GAAG,UAAU;IAUhG,qFAAqF;WACvE,gBAAgB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,UAAU;WAItE,qBAAqB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,GAAG,UAAU;IAkB1G,6DAA6D;WAC/C,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU;WAIhC,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,GAAG,UAAU;CAQrE"}
@@ -0,0 +1,248 @@
1
+ import { MathOps } from './math-ops.js';
2
+ import { Vector3 } from './vector3.js';
3
+ export class Quaternion {
4
+ x;
5
+ y;
6
+ z;
7
+ w;
8
+ static IDENTITY = new Quaternion(0, 0, 0, 1);
9
+ static EPSILON = 1e-8;
10
+ constructor(x = 0, y = 0, z = 0, w = 1) {
11
+ this.x = x;
12
+ this.y = y;
13
+ this.z = z;
14
+ this.w = w;
15
+ }
16
+ // ---- Basic utilities ----
17
+ setInPlace(x, y, z, w) {
18
+ this.x = x;
19
+ this.y = y;
20
+ this.z = z;
21
+ this.w = w;
22
+ return this;
23
+ }
24
+ copyFrom(other) {
25
+ this.x = other.x;
26
+ this.y = other.y;
27
+ this.z = other.z;
28
+ this.w = other.w;
29
+ return this;
30
+ }
31
+ copyToRef(ref) {
32
+ ref.x = this.x;
33
+ ref.y = this.y;
34
+ ref.z = this.z;
35
+ ref.w = this.w;
36
+ return ref;
37
+ }
38
+ clone() {
39
+ return new Quaternion(this.x, this.y, this.z, this.w);
40
+ }
41
+ // ---- Metrics ----
42
+ lengthSquared() {
43
+ return this.x * this.x + this.y * this.y + this.z * this.z + this.w * this.w;
44
+ }
45
+ length() {
46
+ return MathOps.sqrt(this.lengthSquared());
47
+ }
48
+ dot(other) {
49
+ return this.x * other.x + this.y * other.y + this.z * other.z + this.w * other.w;
50
+ }
51
+ // ---- Normalization ----
52
+ normalizeInPlace() {
53
+ const lsq = this.lengthSquared();
54
+ if (lsq > Quaternion.EPSILON) {
55
+ const invLen = 1 / MathOps.sqrt(lsq);
56
+ this.x *= invLen;
57
+ this.y *= invLen;
58
+ this.z *= invLen;
59
+ this.w *= invLen;
60
+ }
61
+ return this;
62
+ }
63
+ normalizeToRef(ref) {
64
+ const lsq = this.lengthSquared();
65
+ if (lsq > Quaternion.EPSILON) {
66
+ const invLen = 1 / MathOps.sqrt(lsq);
67
+ ref.x = this.x * invLen;
68
+ ref.y = this.y * invLen;
69
+ ref.z = this.z * invLen;
70
+ ref.w = this.w * invLen;
71
+ }
72
+ else {
73
+ ref.x = 0;
74
+ ref.y = 0;
75
+ ref.z = 0;
76
+ ref.w = 1;
77
+ }
78
+ return ref;
79
+ }
80
+ normalizedToNew() {
81
+ return this.normalizeToRef(new Quaternion());
82
+ }
83
+ // ---- Conjugate / Inverse ----
84
+ conjugateInPlace() {
85
+ this.x = -this.x;
86
+ this.y = -this.y;
87
+ this.z = -this.z;
88
+ return this;
89
+ }
90
+ conjugateToRef(ref) {
91
+ ref.x = -this.x;
92
+ ref.y = -this.y;
93
+ ref.z = -this.z;
94
+ ref.w = this.w;
95
+ return ref;
96
+ }
97
+ conjugateToNew() {
98
+ return this.conjugateToRef(new Quaternion());
99
+ }
100
+ invertInPlace() {
101
+ const lsq = this.lengthSquared();
102
+ if (lsq > Quaternion.EPSILON) {
103
+ const invLsq = 1 / lsq;
104
+ this.x = -this.x * invLsq;
105
+ this.y = -this.y * invLsq;
106
+ this.z = -this.z * invLsq;
107
+ this.w = this.w * invLsq;
108
+ }
109
+ return this;
110
+ }
111
+ invertToNew() {
112
+ return this.clone().invertInPlace();
113
+ }
114
+ // ---- Multiplication (this * other) ----
115
+ multiplyToNew(other) {
116
+ return this.multiplyToRef(other, new Quaternion());
117
+ }
118
+ multiplyToRef(other, ref) {
119
+ const ax = this.x, ay = this.y, az = this.z, aw = this.w;
120
+ const bx = other.x, by = other.y, bz = other.z, bw = other.w;
121
+ ref.x = aw * bx + ax * bw + ay * bz - az * by;
122
+ ref.y = aw * by - ax * bz + ay * bw + az * bx;
123
+ ref.z = aw * bz + ax * by - ay * bx + az * bw;
124
+ ref.w = aw * bw - ax * bx - ay * by - az * bz;
125
+ return ref;
126
+ }
127
+ multiplyInPlace(other) {
128
+ return this.multiplyToRef(other, this);
129
+ }
130
+ // ---- Rotate vector ----
131
+ rotateVector3ToRef(v, ref) {
132
+ const qx = this.x, qy = this.y, qz = this.z, qw = this.w;
133
+ const vx = v.x, vy = v.y, vz = v.z;
134
+ // t = 2 * cross(q.xyz, v)
135
+ const tx = 2 * (qy * vz - qz * vy);
136
+ const ty = 2 * (qz * vx - qx * vz);
137
+ const tz = 2 * (qx * vy - qy * vx);
138
+ // result = v + qw * t + cross(q.xyz, t)
139
+ ref.x = vx + qw * tx + (qy * tz - qz * ty);
140
+ ref.y = vy + qw * ty + (qz * tx - qx * tz);
141
+ ref.z = vz + qw * tz + (qx * ty - qy * tx);
142
+ return ref;
143
+ }
144
+ rotateVector3ToNew(v) {
145
+ return this.rotateVector3ToRef(v, new Vector3());
146
+ }
147
+ // ---- Slerp ----
148
+ slerpToRef(to, t, ref) {
149
+ let bx = to.x, by = to.y, bz = to.z, bw = to.w;
150
+ let cosOmega = this.x * bx + this.y * by + this.z * bz + this.w * bw;
151
+ // Take shortest path
152
+ if (cosOmega < 0) {
153
+ cosOmega = -cosOmega;
154
+ bx = -bx;
155
+ by = -by;
156
+ bz = -bz;
157
+ bw = -bw;
158
+ }
159
+ let s0, s1;
160
+ if (cosOmega > 1 - Quaternion.EPSILON) {
161
+ // Very close — use lerp to avoid division by zero
162
+ s0 = 1 - t;
163
+ s1 = t;
164
+ }
165
+ else {
166
+ const sinOmega = MathOps.sqrt(1 - cosOmega * cosOmega);
167
+ const omega = MathOps.atan2(sinOmega, cosOmega);
168
+ const invSin = 1 / sinOmega;
169
+ s0 = MathOps.sin((1 - t) * omega) * invSin;
170
+ s1 = MathOps.sin(t * omega) * invSin;
171
+ }
172
+ ref.x = s0 * this.x + s1 * bx;
173
+ ref.y = s0 * this.y + s1 * by;
174
+ ref.z = s0 * this.z + s1 * bz;
175
+ ref.w = s0 * this.w + s1 * bw;
176
+ return ref;
177
+ }
178
+ slerpToNew(to, t) {
179
+ return this.slerpToRef(to, t, new Quaternion());
180
+ }
181
+ slerpInPlace(to, t) {
182
+ return this.slerpToRef(to, t, this);
183
+ }
184
+ // ---- Euler extraction ----
185
+ /** Extract yaw (Y-axis rotation) from this quaternion. */
186
+ toEulerYaw() {
187
+ const sinYaw = 2 * (this.w * this.y + this.x * this.z);
188
+ const cosYaw = 1 - 2 * (this.y * this.y + this.x * this.x);
189
+ return MathOps.atan2(sinYaw, cosYaw);
190
+ }
191
+ // ---- Equality ----
192
+ equals(other) {
193
+ return this.x === other.x && this.y === other.y && this.z === other.z && this.w === other.w;
194
+ }
195
+ approxEquals(other, eps = Quaternion.EPSILON) {
196
+ return (Math.abs(this.x - other.x) <= eps &&
197
+ Math.abs(this.y - other.y) <= eps &&
198
+ Math.abs(this.z - other.z) <= eps &&
199
+ Math.abs(this.w - other.w) <= eps);
200
+ }
201
+ // ---- Static constructors ----
202
+ /** Create quaternion from axis-angle. Axis should be normalized. */
203
+ static fromAxisAngle(axis, angle) {
204
+ return Quaternion.fromAxisAngleToRef(axis, angle, new Quaternion());
205
+ }
206
+ static fromAxisAngleToRef(axis, angle, ref) {
207
+ const halfAngle = angle * 0.5;
208
+ const s = MathOps.sin(halfAngle);
209
+ ref.x = axis.x * s;
210
+ ref.y = axis.y * s;
211
+ ref.z = axis.z * s;
212
+ ref.w = MathOps.cos(halfAngle);
213
+ return ref;
214
+ }
215
+ /** Create quaternion from Euler angles (Y-up convention: yaw=Y, pitch=X, roll=Z). */
216
+ static fromYawPitchRoll(yaw, pitch, roll) {
217
+ return Quaternion.fromYawPitchRollToRef(yaw, pitch, roll, new Quaternion());
218
+ }
219
+ static fromYawPitchRollToRef(yaw, pitch, roll, ref) {
220
+ const hy = yaw * 0.5;
221
+ const hp = pitch * 0.5;
222
+ const hr = roll * 0.5;
223
+ const sy = MathOps.sin(hy);
224
+ const cy = MathOps.cos(hy);
225
+ const sp = MathOps.sin(hp);
226
+ const cp = MathOps.cos(hp);
227
+ const sr = MathOps.sin(hr);
228
+ const cr = MathOps.cos(hr);
229
+ // Rotation order: Y (yaw) * X (pitch) * Z (roll)
230
+ ref.x = cy * sp * cr + sy * cp * sr;
231
+ ref.y = sy * cp * cr - cy * sp * sr;
232
+ ref.z = cy * cp * sr - sy * sp * cr;
233
+ ref.w = cy * cp * cr + sy * sp * sr;
234
+ return ref;
235
+ }
236
+ /** Create quaternion representing rotation around Y axis. */
237
+ static fromYaw(yaw) {
238
+ return Quaternion.fromYawToRef(yaw, new Quaternion());
239
+ }
240
+ static fromYawToRef(yaw, ref) {
241
+ const half = yaw * 0.5;
242
+ ref.x = 0;
243
+ ref.y = MathOps.sin(half);
244
+ ref.z = 0;
245
+ ref.w = MathOps.cos(half);
246
+ return ref;
247
+ }
248
+ }
@@ -0,0 +1,7 @@
1
+ import { Vector3 } from './vector3.js';
2
+ export declare const VECTOR3_BUFFER_1: Vector3;
3
+ export declare const VECTOR3_BUFFER_2: Vector3;
4
+ export declare const VECTOR3_BUFFER_3: Vector3;
5
+ export declare const VECTOR3_BUFFER_4: Vector3;
6
+ export declare const VECTOR3_BUFFER_5: Vector3;
7
+ //# sourceMappingURL=vector3-buffers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vector3-buffers.d.ts","sourceRoot":"","sources":["../../src/lib/vector3-buffers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,eAAO,MAAM,gBAAgB,SAAgB,CAAC;AAC9C,eAAO,MAAM,gBAAgB,SAAgB,CAAC;AAC9C,eAAO,MAAM,gBAAgB,SAAgB,CAAC;AAC9C,eAAO,MAAM,gBAAgB,SAAgB,CAAC;AAC9C,eAAO,MAAM,gBAAgB,SAAgB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { Vector3 } from './vector3.js';
2
+ export const VECTOR3_BUFFER_1 = new Vector3();
3
+ export const VECTOR3_BUFFER_2 = new Vector3();
4
+ export const VECTOR3_BUFFER_3 = new Vector3();
5
+ export const VECTOR3_BUFFER_4 = new Vector3();
6
+ export const VECTOR3_BUFFER_5 = new Vector3();
@@ -0,0 +1,86 @@
1
+ export interface IVector3Like {
2
+ x: number;
3
+ y: number;
4
+ z: number;
5
+ }
6
+ export declare class Vector3 {
7
+ x: number;
8
+ y: number;
9
+ z: number;
10
+ static readonly ZERO: Vector3;
11
+ static readonly ONE: Vector3;
12
+ static readonly UNIT_X: Vector3;
13
+ static readonly UNIT_Y: Vector3;
14
+ static readonly UNIT_Z: Vector3;
15
+ static readonly UP: Vector3;
16
+ static readonly DOWN: Vector3;
17
+ static readonly LEFT: Vector3;
18
+ static readonly RIGHT: Vector3;
19
+ static readonly FORWARD: Vector3;
20
+ static readonly BACKWARD: Vector3;
21
+ static readonly EPSILON = 1e-8;
22
+ constructor(x?: number, y?: number, z?: number);
23
+ setInPlace(x: number, y: number, z: number): Vector3;
24
+ copyFrom(other: IVector3Like): Vector3;
25
+ copyToRef(ref: IVector3Like): IVector3Like;
26
+ clone(): Vector3;
27
+ addToNew(other: IVector3Like): Vector3;
28
+ addToRef(other: IVector3Like, ref: Vector3): Vector3;
29
+ addInPlace(other: IVector3Like): Vector3;
30
+ subToNew(other: IVector3Like): Vector3;
31
+ subToRef(other: IVector3Like, ref: Vector3): Vector3;
32
+ subInPlace(other: IVector3Like): Vector3;
33
+ mulToNew(other: IVector3Like): Vector3;
34
+ mulToRef(other: IVector3Like, ref: Vector3): Vector3;
35
+ mulInPlace(other: IVector3Like): Vector3;
36
+ divToNew(other: IVector3Like): Vector3;
37
+ divToRef(other: IVector3Like, ref: Vector3): Vector3;
38
+ divInPlace(other: IVector3Like): Vector3;
39
+ scaleToNew(s: number): Vector3;
40
+ scaleToRef(s: number, ref: Vector3): Vector3;
41
+ scaleInPlace(s: number): Vector3;
42
+ negateToNew(): Vector3;
43
+ negateToRef(ref: Vector3): Vector3;
44
+ negateInPlace(): Vector3;
45
+ absToNew(): Vector3;
46
+ absToRef(ref: Vector3): Vector3;
47
+ absInPlace(): Vector3;
48
+ minToRef(other: IVector3Like, ref: Vector3): Vector3;
49
+ minInPlace(other: IVector3Like): Vector3;
50
+ maxToRef(other: IVector3Like, ref: Vector3): Vector3;
51
+ maxInPlace(other: IVector3Like): Vector3;
52
+ clampToRef(min: IVector3Like, max: IVector3Like, ref: Vector3): Vector3;
53
+ clampInPlace(min: IVector3Like, max: IVector3Like): Vector3;
54
+ clampToNew(min: IVector3Like, max: IVector3Like): Vector3;
55
+ lengthSquared(): number;
56
+ length(): number;
57
+ distanceSquaredTo(other: IVector3Like): number;
58
+ distanceTo(other: IVector3Like): number;
59
+ dot(other: IVector3Like): number;
60
+ crossToNew(other: IVector3Like): Vector3;
61
+ crossToRef(other: IVector3Like, ref: Vector3): Vector3;
62
+ crossInPlace(other: IVector3Like): Vector3;
63
+ normalizeToRef(ref: Vector3): Vector3;
64
+ normalizeInPlace(): Vector3;
65
+ normalizedToNew(): Vector3;
66
+ projectOntoToRef(normal: IVector3Like, ref: Vector3): Vector3;
67
+ projectOntoInPlace(normal: IVector3Like): Vector3;
68
+ projectOntoToNew(normal: IVector3Like): Vector3;
69
+ reflectToRef(normal: IVector3Like, ref: Vector3): Vector3;
70
+ reflectInPlace(normal: IVector3Like): Vector3;
71
+ reflectToNew(normal: IVector3Like): Vector3;
72
+ lerpToRef(to: IVector3Like, t: number, ref: Vector3): Vector3;
73
+ lerpInPlace(to: IVector3Like, t: number): Vector3;
74
+ lerpToNew(to: IVector3Like, t: number): Vector3;
75
+ clampLengthInPlace(minLen: number, maxLen: number): Vector3;
76
+ clampLengthToRef(minLen: number, maxLen: number, ref: Vector3): Vector3;
77
+ clampLengthToNew(minLen: number, maxLen: number): Vector3;
78
+ equals(other: IVector3Like): boolean;
79
+ approxEquals(other: IVector3Like, eps?: number): boolean;
80
+ toArray(out?: number[], offset?: number): number[];
81
+ static fromArray(arr: ArrayLike<number>, offset?: number): Vector3;
82
+ static fromArrayToRef(arr: ArrayLike<number>, ref: Vector3, offset?: number): Vector3;
83
+ static minToRef(a: IVector3Like, b: IVector3Like, ref: Vector3): Vector3;
84
+ static maxToRef(a: IVector3Like, b: IVector3Like, ref: Vector3): Vector3;
85
+ }
86
+ //# sourceMappingURL=vector3.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vector3.d.ts","sourceRoot":"","sources":["../../src/lib/vector3.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,YAAY;IAC3B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX;AAED,qBAAa,OAAO;IAgBC,CAAC;IAAa,CAAC;IAAa,CAAC;IAfhD,gBAAuB,IAAI,UAAwB;IACnD,gBAAuB,GAAG,UAAwB;IAClD,gBAAuB,MAAM,UAAwB;IACrD,gBAAuB,MAAM,UAAwB;IACrD,gBAAuB,MAAM,UAAwB;IAErD,gBAAuB,EAAE,UAAwB;IACjD,gBAAuB,IAAI,UAAyB;IACpD,gBAAuB,IAAI,UAAyB;IACpD,gBAAuB,KAAK,UAAwB;IACpD,gBAAuB,OAAO,UAAwB;IACtD,gBAAuB,QAAQ,UAAyB;IAExD,gBAAuB,OAAO,QAAQ;gBAEnB,CAAC,SAAI,EAAS,CAAC,SAAI,EAAS,CAAC,SAAI;IAI7C,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,OAAO;IAOpD,QAAQ,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAOtC,SAAS,CAAC,GAAG,EAAE,YAAY,GAAG,YAAY;IAO1C,KAAK,IAAI,OAAO;IAMhB,QAAQ,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAItC,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOpD,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IASxC,QAAQ,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAItC,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOpD,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IASxC,QAAQ,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAItC,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOpD,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IASxC,QAAQ,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAItC,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOpD,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IASxC,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO;IAI9B,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAO5C,YAAY,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO;IAShC,WAAW,IAAI,OAAO;IAItB,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO;IAOlC,aAAa,IAAI,OAAO;IAOxB,QAAQ,IAAI,OAAO;IAInB,QAAQ,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO;IAO/B,UAAU,IAAI,OAAO;IASrB,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOpD,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAOxC,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOpD,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAOxC,UAAU,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAOvE,YAAY,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,YAAY,GAAG,OAAO;IAI3D,UAAU,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,YAAY,GAAG,OAAO;IAMzD,aAAa,IAAI,MAAM;IAIvB,MAAM,IAAI,MAAM;IAIhB,iBAAiB,CAAC,KAAK,EAAE,YAAY,GAAG,MAAM;IAO9C,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,MAAM;IAMvC,GAAG,CAAC,KAAK,EAAE,YAAY,GAAG,MAAM;IAIhC,UAAU,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAQxC,UAAU,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAUtD,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAM1C,cAAc,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO;IAerC,gBAAgB,IAAI,OAAO;IAI3B,eAAe,IAAI,OAAO;IAM1B,gBAAgB,CAAC,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAe7D,kBAAkB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO;IAIjD,gBAAgB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO;IAI/C,YAAY,CAAC,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAQzD,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO;IAI7C,YAAY,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO;IAM3C,SAAS,CAAC,EAAE,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAO7D,WAAW,CAAC,EAAE,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,GAAG,OAAO;IAIjD,SAAS,CAAC,EAAE,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,GAAG,OAAO;IAM/C,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO;IAgB3D,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;IAKvE,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO;IAMzD,MAAM,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO;IAIpC,YAAY,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,SAAkB,GAAG,OAAO;IAMjE,OAAO,CAAC,GAAG,GAAE,MAAM,EAAO,EAAE,MAAM,SAAI,GAAG,MAAM,EAAE;WAO1C,SAAS,CAAC,GAAG,EAAE,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,SAAI,GAAG,OAAO;WAItD,cAAc,CAAC,GAAG,EAAE,SAAS,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,SAAI,GAAG,OAAO;WASzE,QAAQ,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;WAOjE,QAAQ,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO;CAMhF"}
@@ -0,0 +1,358 @@
1
+ import { MathOps } from './math-ops.js';
2
+ export class Vector3 {
3
+ x;
4
+ y;
5
+ z;
6
+ static ZERO = new Vector3(0, 0, 0);
7
+ static ONE = new Vector3(1, 1, 1);
8
+ static UNIT_X = new Vector3(1, 0, 0);
9
+ static UNIT_Y = new Vector3(0, 1, 0);
10
+ static UNIT_Z = new Vector3(0, 0, 1);
11
+ static UP = new Vector3(0, 1, 0);
12
+ static DOWN = new Vector3(0, -1, 0);
13
+ static LEFT = new Vector3(-1, 0, 0);
14
+ static RIGHT = new Vector3(1, 0, 0);
15
+ static FORWARD = new Vector3(0, 0, 1);
16
+ static BACKWARD = new Vector3(0, 0, -1);
17
+ static EPSILON = 1e-8;
18
+ constructor(x = 0, y = 0, z = 0) {
19
+ this.x = x;
20
+ this.y = y;
21
+ this.z = z;
22
+ }
23
+ // ---- Basic utilities ----
24
+ setInPlace(x, y, z) {
25
+ this.x = x;
26
+ this.y = y;
27
+ this.z = z;
28
+ return this;
29
+ }
30
+ copyFrom(other) {
31
+ this.x = other.x;
32
+ this.y = other.y;
33
+ this.z = other.z;
34
+ return this;
35
+ }
36
+ copyToRef(ref) {
37
+ ref.x = this.x;
38
+ ref.y = this.y;
39
+ ref.z = this.z;
40
+ return ref;
41
+ }
42
+ clone() {
43
+ return new Vector3(this.x, this.y, this.z);
44
+ }
45
+ // ---- Addition ----
46
+ addToNew(other) {
47
+ return new Vector3(this.x + other.x, this.y + other.y, this.z + other.z);
48
+ }
49
+ addToRef(other, ref) {
50
+ ref.x = this.x + other.x;
51
+ ref.y = this.y + other.y;
52
+ ref.z = this.z + other.z;
53
+ return ref;
54
+ }
55
+ addInPlace(other) {
56
+ this.x += other.x;
57
+ this.y += other.y;
58
+ this.z += other.z;
59
+ return this;
60
+ }
61
+ // ---- Subtraction ----
62
+ subToNew(other) {
63
+ return new Vector3(this.x - other.x, this.y - other.y, this.z - other.z);
64
+ }
65
+ subToRef(other, ref) {
66
+ ref.x = this.x - other.x;
67
+ ref.y = this.y - other.y;
68
+ ref.z = this.z - other.z;
69
+ return ref;
70
+ }
71
+ subInPlace(other) {
72
+ this.x -= other.x;
73
+ this.y -= other.y;
74
+ this.z -= other.z;
75
+ return this;
76
+ }
77
+ // ---- Component-wise multiply ----
78
+ mulToNew(other) {
79
+ return new Vector3(this.x * other.x, this.y * other.y, this.z * other.z);
80
+ }
81
+ mulToRef(other, ref) {
82
+ ref.x = this.x * other.x;
83
+ ref.y = this.y * other.y;
84
+ ref.z = this.z * other.z;
85
+ return ref;
86
+ }
87
+ mulInPlace(other) {
88
+ this.x *= other.x;
89
+ this.y *= other.y;
90
+ this.z *= other.z;
91
+ return this;
92
+ }
93
+ // ---- Component-wise divide ----
94
+ divToNew(other) {
95
+ return new Vector3(this.x / other.x, this.y / other.y, this.z / other.z);
96
+ }
97
+ divToRef(other, ref) {
98
+ ref.x = this.x / other.x;
99
+ ref.y = this.y / other.y;
100
+ ref.z = this.z / other.z;
101
+ return ref;
102
+ }
103
+ divInPlace(other) {
104
+ this.x /= other.x;
105
+ this.y /= other.y;
106
+ this.z /= other.z;
107
+ return this;
108
+ }
109
+ // ---- Scale by scalar ----
110
+ scaleToNew(s) {
111
+ return new Vector3(this.x * s, this.y * s, this.z * s);
112
+ }
113
+ scaleToRef(s, ref) {
114
+ ref.x = this.x * s;
115
+ ref.y = this.y * s;
116
+ ref.z = this.z * s;
117
+ return ref;
118
+ }
119
+ scaleInPlace(s) {
120
+ this.x *= s;
121
+ this.y *= s;
122
+ this.z *= s;
123
+ return this;
124
+ }
125
+ // ---- Negate / Abs ----
126
+ negateToNew() {
127
+ return new Vector3(-this.x, -this.y, -this.z);
128
+ }
129
+ negateToRef(ref) {
130
+ ref.x = -this.x;
131
+ ref.y = -this.y;
132
+ ref.z = -this.z;
133
+ return ref;
134
+ }
135
+ negateInPlace() {
136
+ this.x = -this.x;
137
+ this.y = -this.y;
138
+ this.z = -this.z;
139
+ return this;
140
+ }
141
+ absToNew() {
142
+ return new Vector3(Math.abs(this.x), Math.abs(this.y), Math.abs(this.z));
143
+ }
144
+ absToRef(ref) {
145
+ ref.x = Math.abs(this.x);
146
+ ref.y = Math.abs(this.y);
147
+ ref.z = Math.abs(this.z);
148
+ return ref;
149
+ }
150
+ absInPlace() {
151
+ this.x = Math.abs(this.x);
152
+ this.y = Math.abs(this.y);
153
+ this.z = Math.abs(this.z);
154
+ return this;
155
+ }
156
+ // ---- Min/Max/Clamp (component-wise) ----
157
+ minToRef(other, ref) {
158
+ ref.x = Math.min(this.x, other.x);
159
+ ref.y = Math.min(this.y, other.y);
160
+ ref.z = Math.min(this.z, other.z);
161
+ return ref;
162
+ }
163
+ minInPlace(other) {
164
+ this.x = Math.min(this.x, other.x);
165
+ this.y = Math.min(this.y, other.y);
166
+ this.z = Math.min(this.z, other.z);
167
+ return this;
168
+ }
169
+ maxToRef(other, ref) {
170
+ ref.x = Math.max(this.x, other.x);
171
+ ref.y = Math.max(this.y, other.y);
172
+ ref.z = Math.max(this.z, other.z);
173
+ return ref;
174
+ }
175
+ maxInPlace(other) {
176
+ this.x = Math.max(this.x, other.x);
177
+ this.y = Math.max(this.y, other.y);
178
+ this.z = Math.max(this.z, other.z);
179
+ return this;
180
+ }
181
+ clampToRef(min, max, ref) {
182
+ ref.x = MathOps.clamp(this.x, min.x, max.x);
183
+ ref.y = MathOps.clamp(this.y, min.y, max.y);
184
+ ref.z = MathOps.clamp(this.z, min.z, max.z);
185
+ return ref;
186
+ }
187
+ clampInPlace(min, max) {
188
+ return this.clampToRef(min, max, this);
189
+ }
190
+ clampToNew(min, max) {
191
+ return this.clampToRef(min, max, new Vector3());
192
+ }
193
+ // ---- Metrics ----
194
+ lengthSquared() {
195
+ return this.x * this.x + this.y * this.y + this.z * this.z;
196
+ }
197
+ length() {
198
+ return MathOps.sqrt(this.lengthSquared());
199
+ }
200
+ distanceSquaredTo(other) {
201
+ const dx = this.x - other.x;
202
+ const dy = this.y - other.y;
203
+ const dz = this.z - other.z;
204
+ return dx * dx + dy * dy + dz * dz;
205
+ }
206
+ distanceTo(other) {
207
+ return MathOps.sqrt(this.distanceSquaredTo(other));
208
+ }
209
+ // ---- Dot / Cross ----
210
+ dot(other) {
211
+ return this.x * other.x + this.y * other.y + this.z * other.z;
212
+ }
213
+ crossToNew(other) {
214
+ return new Vector3(this.y * other.z - this.z * other.y, this.z * other.x - this.x * other.z, this.x * other.y - this.y * other.x);
215
+ }
216
+ crossToRef(other, ref) {
217
+ const rx = this.y * other.z - this.z * other.y;
218
+ const ry = this.z * other.x - this.x * other.z;
219
+ const rz = this.x * other.y - this.y * other.x;
220
+ ref.x = rx;
221
+ ref.y = ry;
222
+ ref.z = rz;
223
+ return ref;
224
+ }
225
+ crossInPlace(other) {
226
+ return this.crossToRef(other, this);
227
+ }
228
+ // ---- Normalization ----
229
+ normalizeToRef(ref) {
230
+ const lsq = this.lengthSquared();
231
+ if (lsq > Vector3.EPSILON) {
232
+ const invLen = 1 / MathOps.sqrt(lsq);
233
+ ref.x = this.x * invLen;
234
+ ref.y = this.y * invLen;
235
+ ref.z = this.z * invLen;
236
+ }
237
+ else {
238
+ ref.x = 0;
239
+ ref.y = 0;
240
+ ref.z = 0;
241
+ }
242
+ return ref;
243
+ }
244
+ normalizeInPlace() {
245
+ return this.normalizeToRef(this);
246
+ }
247
+ normalizedToNew() {
248
+ return this.normalizeToRef(new Vector3());
249
+ }
250
+ // ---- Projection / Reflection ----
251
+ projectOntoToRef(normal, ref) {
252
+ const nlsq = normal.x * normal.x + normal.y * normal.y + normal.z * normal.z;
253
+ if (nlsq <= Vector3.EPSILON) {
254
+ ref.x = 0;
255
+ ref.y = 0;
256
+ ref.z = 0;
257
+ return ref;
258
+ }
259
+ const scale = (this.x * normal.x + this.y * normal.y + this.z * normal.z) / nlsq;
260
+ ref.x = normal.x * scale;
261
+ ref.y = normal.y * scale;
262
+ ref.z = normal.z * scale;
263
+ return ref;
264
+ }
265
+ projectOntoInPlace(normal) {
266
+ return this.projectOntoToRef(normal, this);
267
+ }
268
+ projectOntoToNew(normal) {
269
+ return this.projectOntoToRef(normal, new Vector3());
270
+ }
271
+ reflectToRef(normal, ref) {
272
+ const d = (this.x * normal.x + this.y * normal.y + this.z * normal.z) * 2;
273
+ ref.x = this.x - d * normal.x;
274
+ ref.y = this.y - d * normal.y;
275
+ ref.z = this.z - d * normal.z;
276
+ return ref;
277
+ }
278
+ reflectInPlace(normal) {
279
+ return this.reflectToRef(normal, this);
280
+ }
281
+ reflectToNew(normal) {
282
+ return this.reflectToRef(normal, new Vector3());
283
+ }
284
+ // ---- Lerp ----
285
+ lerpToRef(to, t, ref) {
286
+ ref.x = MathOps.lerp(this.x, to.x, t);
287
+ ref.y = MathOps.lerp(this.y, to.y, t);
288
+ ref.z = MathOps.lerp(this.z, to.z, t);
289
+ return ref;
290
+ }
291
+ lerpInPlace(to, t) {
292
+ return this.lerpToRef(to, t, this);
293
+ }
294
+ lerpToNew(to, t) {
295
+ return this.lerpToRef(to, t, new Vector3());
296
+ }
297
+ // ---- Length clamping ----
298
+ clampLengthInPlace(minLen, maxLen) {
299
+ const lenSq = this.lengthSquared();
300
+ if (lenSq < minLen * minLen) {
301
+ const len = MathOps.sqrt(lenSq);
302
+ if (len > Vector3.EPSILON) {
303
+ this.scaleInPlace(minLen / len);
304
+ }
305
+ else {
306
+ this.setInPlace(minLen, 0, 0);
307
+ }
308
+ }
309
+ else if (lenSq > maxLen * maxLen) {
310
+ const len = MathOps.sqrt(lenSq);
311
+ this.scaleInPlace(maxLen / (len > Vector3.EPSILON ? len : 1));
312
+ }
313
+ return this;
314
+ }
315
+ clampLengthToRef(minLen, maxLen, ref) {
316
+ ref.copyFrom(this);
317
+ return ref.clampLengthInPlace(minLen, maxLen);
318
+ }
319
+ clampLengthToNew(minLen, maxLen) {
320
+ return this.clampLengthToRef(minLen, maxLen, new Vector3());
321
+ }
322
+ // ---- Equality ----
323
+ equals(other) {
324
+ return this.x === other.x && this.y === other.y && this.z === other.z;
325
+ }
326
+ approxEquals(other, eps = Vector3.EPSILON) {
327
+ return Math.abs(this.x - other.x) <= eps && Math.abs(this.y - other.y) <= eps && Math.abs(this.z - other.z) <= eps;
328
+ }
329
+ // ---- Serialization ----
330
+ toArray(out = [], offset = 0) {
331
+ out[offset] = this.x;
332
+ out[offset + 1] = this.y;
333
+ out[offset + 2] = this.z;
334
+ return out;
335
+ }
336
+ static fromArray(arr, offset = 0) {
337
+ return new Vector3(arr[offset], arr[offset + 1], arr[offset + 2]);
338
+ }
339
+ static fromArrayToRef(arr, ref, offset = 0) {
340
+ ref.x = arr[offset];
341
+ ref.y = arr[offset + 1];
342
+ ref.z = arr[offset + 2];
343
+ return ref;
344
+ }
345
+ // ---- Static helpers ----
346
+ static minToRef(a, b, ref) {
347
+ ref.x = Math.min(a.x, b.x);
348
+ ref.y = Math.min(a.y, b.y);
349
+ ref.z = Math.min(a.z, b.z);
350
+ return ref;
351
+ }
352
+ static maxToRef(a, b, ref) {
353
+ ref.x = Math.max(a.x, b.x);
354
+ ref.y = Math.max(a.y, b.y);
355
+ ref.z = Math.max(a.z, b.z);
356
+ return ref;
357
+ }
358
+ }
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../../../node_modules/.pnpm/@lagless+deterministic-math@0.1.8/node_modules/@lagless/deterministic-math/dist/pkg/det_math_wasm.d.ts","../../../node_modules/.pnpm/@lagless+deterministic-math@0.1.8/node_modules/@lagless/deterministic-math/dist/lib/index.d.ts","../src/lib/math-ops.ts","../src/lib/vector2.ts","../src/lib/vector2-buffers.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts"],"fileIdsList":[[59,62,63,64,71,114],[59,61,71,114],[59,63,71,114],[59,62,71,114],[60,71,114],[71,114],[71,111,114],[71,113,114],[114],[71,114,119,148],[71,114,115,120,126,127,134,145,156],[71,114,115,116,126,134],[66,67,68,71,114],[71,114,117,157],[71,114,118,119,127,135],[71,114,119,145,153],[71,114,120,122,126,134],[71,113,114,121],[71,114,122,123],[71,114,124,126],[71,113,114,126],[71,114,126,127,128,145,156],[71,114,126,127,128,141,145,148],[71,109,114],[71,114,122,126,129,134,145,156],[71,114,126,127,129,130,134,145,153,156],[71,114,129,131,145,153,156],[69,70,71,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[71,114,126,132],[71,114,133,156,161],[71,114,122,126,134,145],[71,114,135],[71,114,136],[71,113,114,137],[71,111,112,113,114,115,116,117,118,119,120,121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[71,114,139],[71,114,140],[71,114,126,141,142],[71,114,141,143,157,159],[71,114,126,145,146,148],[71,114,147,148],[71,114,145,146],[71,114,148],[71,114,149],[71,111,114,145,150],[71,114,126,151,152],[71,114,151,152],[71,114,119,134,145,153],[71,114,154],[71,114,134,155],[71,114,129,140,156],[71,114,119,157],[71,114,145,158],[71,114,133,159],[71,114,160],[71,114,126,128,137,145,148,156,159,161],[71,114,145,162],[58,71,114],[71,81,85,114,156],[71,81,114,145,156],[71,76,114],[71,78,81,114,153,156],[71,114,134,153],[71,114,163],[71,76,114,163],[71,78,81,114,134,156],[71,73,74,77,80,114,126,145,156],[71,81,88,114],[71,73,79,114],[71,81,102,103,114],[71,77,81,114,148,156,163],[71,102,114,163],[71,75,76,114,163],[71,81,114],[71,75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,114],[71,81,96,114],[71,81,88,89,114],[71,79,81,89,90,114],[71,80,114],[71,73,76,81,114],[71,81,85,89,90,114],[71,85,114],[71,79,81,84,114,156],[71,73,78,81,88,114],[71,114,145],[71,76,81,102,114,161,163]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"3511862997360229a86508fd32efbba80dee7c97f363d46cc85bc891c316d8fe","impliedFormat":1},{"version":"5864f61cfd744875b4f6250009a6d3fe8019c15e022abf7671259c2377d2288a","impliedFormat":1},{"version":"cb1cbc973a31781766d2525733ae1d20acaaeccb07186bd8f286459d75fb89a0","signature":"e82c68cc9bee262ff2401f8202bb43306b96e207b7abfa13f5f351fc8ce41b9d","impliedFormat":99},{"version":"d05c43edbe5b37a73488dafc7cf18fae5221e73bb520d1bf1ff4e237fd91210a","signature":"9ba510bcf107f3b93bbe83ae63dc6251410769048ec2a1c300c13b8efe555f92","impliedFormat":99},{"version":"a6969fa860af104be3ce72e5e998b31756477ea9d412dffba1e3af9178315d29","signature":"3e36da5942397ee0b3a4e38cdde9a6b997f8eb72463e3cd8138c225aabe27178","impliedFormat":99},{"version":"02c78f579b3d9601011f7770e2c17ffb223116eb9d7739394d09005408e65928","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[[62,65]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[65,1],[62,2],[64,3],[63,4],[61,5],[60,6],[111,7],[112,7],[113,8],[71,9],[114,10],[115,11],[116,12],[66,6],[69,13],[67,6],[68,6],[117,14],[118,15],[119,16],[120,17],[121,18],[122,19],[123,19],[125,6],[124,20],[126,21],[127,22],[128,23],[110,24],[70,6],[129,25],[130,26],[131,27],[163,28],[132,29],[133,30],[134,31],[135,32],[136,33],[137,34],[138,35],[139,36],[140,37],[141,38],[142,38],[143,39],[144,6],[145,40],[147,41],[146,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[158,53],[159,54],[160,55],[161,56],[162,57],[72,6],[59,58],[58,6],[56,6],[57,6],[11,6],[10,6],[2,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[3,6],[20,6],[21,6],[4,6],[22,6],[26,6],[23,6],[24,6],[25,6],[27,6],[28,6],[29,6],[5,6],[30,6],[31,6],[32,6],[33,6],[6,6],[37,6],[34,6],[35,6],[36,6],[38,6],[7,6],[39,6],[44,6],[45,6],[40,6],[41,6],[42,6],[43,6],[8,6],[49,6],[46,6],[47,6],[48,6],[50,6],[9,6],[51,6],[52,6],[53,6],[55,6],[54,6],[1,6],[88,59],[98,60],[87,59],[108,61],[79,62],[78,63],[107,64],[101,65],[106,66],[81,67],[95,68],[80,69],[104,70],[76,71],[75,64],[105,72],[77,73],[82,74],[83,6],[86,74],[73,6],[109,75],[99,76],[90,77],[91,78],[93,79],[89,80],[92,81],[102,64],[84,82],[85,83],[94,84],[74,85],[97,76],[96,74],[100,6],[103,86]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../../../node_modules/.pnpm/@lagless+deterministic-math@0.1.9/node_modules/@lagless/deterministic-math/dist/pkg/det_math_wasm.d.ts","../../../node_modules/.pnpm/@lagless+deterministic-math@0.1.9/node_modules/@lagless/deterministic-math/dist/lib/index.d.ts","../src/lib/math-ops.ts","../src/lib/vector2.ts","../src/lib/vector2-buffers.ts","../src/lib/vector3.ts","../src/lib/vector3-buffers.ts","../src/lib/quaternion.ts","../src/lib/quaternion-buffers.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts"],"fileIdsList":[[59,62,63,64,65,66,67,68,75,118],[59,61,75,118],[59,67,75,118],[59,62,65,75,118],[59,63,75,118],[59,62,75,118],[59,65,75,118],[60,75,118],[75,118],[75,115,118],[75,117,118],[118],[75,118,123,152],[75,118,119,124,130,131,138,149,160],[75,118,119,120,130,138],[70,71,72,75,118],[75,118,121,161],[75,118,122,123,131,139],[75,118,123,149,157],[75,118,124,126,130,138],[75,117,118,125],[75,118,126,127],[75,118,128,130],[75,117,118,130],[75,118,130,131,132,149,160],[75,118,130,131,132,145,149,152],[75,113,118],[75,118,126,130,133,138,149,160],[75,118,130,131,133,134,138,149,157,160],[75,118,133,135,149,157,160],[73,74,75,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166],[75,118,130,136],[75,118,137,160,165],[75,118,126,130,138,149],[75,118,139],[75,118,140],[75,117,118,141],[75,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166],[75,118,143],[75,118,144],[75,118,130,145,146],[75,118,145,147,161,163],[75,118,130,149,150,152],[75,118,151,152],[75,118,149,150],[75,118,152],[75,118,153],[75,115,118,149,154],[75,118,130,155,156],[75,118,155,156],[75,118,123,138,149,157],[75,118,158],[75,118,138,159],[75,118,133,144,160],[75,118,123,161],[75,118,149,162],[75,118,137,163],[75,118,164],[75,118,130,132,141,149,152,160,163,165],[75,118,149,166],[58,75,118],[75,85,89,118,160],[75,85,118,149,160],[75,80,118],[75,82,85,118,157,160],[75,118,138,157],[75,118,167],[75,80,118,167],[75,82,85,118,138,160],[75,77,78,81,84,118,130,149,160],[75,85,92,118],[75,77,83,118],[75,85,106,107,118],[75,81,85,118,152,160,167],[75,106,118,167],[75,79,80,118,167],[75,85,118],[75,79,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,118],[75,85,100,118],[75,85,92,93,118],[75,83,85,93,94,118],[75,84,118],[75,77,80,85,118],[75,85,89,93,94,118],[75,89,118],[75,83,85,88,118,160],[75,77,82,85,92,118],[75,118,149],[75,80,85,106,118,165,167]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"3511862997360229a86508fd32efbba80dee7c97f363d46cc85bc891c316d8fe","impliedFormat":1},{"version":"5864f61cfd744875b4f6250009a6d3fe8019c15e022abf7671259c2377d2288a","impliedFormat":1},{"version":"cb1cbc973a31781766d2525733ae1d20acaaeccb07186bd8f286459d75fb89a0","signature":"e82c68cc9bee262ff2401f8202bb43306b96e207b7abfa13f5f351fc8ce41b9d","impliedFormat":99},{"version":"d05c43edbe5b37a73488dafc7cf18fae5221e73bb520d1bf1ff4e237fd91210a","signature":"9ba510bcf107f3b93bbe83ae63dc6251410769048ec2a1c300c13b8efe555f92","impliedFormat":99},{"version":"a6969fa860af104be3ce72e5e998b31756477ea9d412dffba1e3af9178315d29","signature":"3e36da5942397ee0b3a4e38cdde9a6b997f8eb72463e3cd8138c225aabe27178","impliedFormat":99},{"version":"c86c41aaa0a4a75bc554696ebaca9511edcfc688f863b9cda19a9a999940c845","signature":"2d093850fbab76d17de64071814894e4db79346d04676e50485844537aa6fcf0","impliedFormat":99},{"version":"cf883aabe9abf214274bc7a1101450fa7aaf55e09b66a956ea3d41067a923ea3","signature":"53c3574cbaca4af521eb4b16fb3686eeb2b263df3597366cc1135e10ca792c36","impliedFormat":99},{"version":"46f5eb4becf8e429cf3006937a5fbe72546074c0cf0b9ce6e52ab73818212e23","signature":"58c8ce05492d160d87ba6e1478bedb2c5caaed62656bafb76dc7a54770fca923","impliedFormat":99},{"version":"12b9aa7d035ae13d6b3f5413287649c1381faa19dd75461023bfb454627ad316","signature":"b58999e8384c655960c9378d4978dce91b8d3f109a9d4e5b58302ea931406f58","impliedFormat":99},{"version":"94dae66d53d09cd2585f315a9bf983ae8f268c33b85d0078f50b2de0ba357b6a","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[[62,69]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[69,1],[62,2],[68,3],[67,4],[64,5],[63,6],[66,7],[65,6],[61,8],[60,9],[115,10],[116,10],[117,11],[75,12],[118,13],[119,14],[120,15],[70,9],[73,16],[71,9],[72,9],[121,17],[122,18],[123,19],[124,20],[125,21],[126,22],[127,22],[129,9],[128,23],[130,24],[131,25],[132,26],[114,27],[74,9],[133,28],[134,29],[135,30],[167,31],[136,32],[137,33],[138,34],[139,35],[140,36],[141,37],[142,38],[143,39],[144,40],[145,41],[146,41],[147,42],[148,9],[149,43],[151,44],[150,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,58],[165,59],[166,60],[76,9],[59,61],[58,9],[56,9],[57,9],[11,9],[10,9],[2,9],[12,9],[13,9],[14,9],[15,9],[16,9],[17,9],[18,9],[19,9],[3,9],[20,9],[21,9],[4,9],[22,9],[26,9],[23,9],[24,9],[25,9],[27,9],[28,9],[29,9],[5,9],[30,9],[31,9],[32,9],[33,9],[6,9],[37,9],[34,9],[35,9],[36,9],[38,9],[7,9],[39,9],[44,9],[45,9],[40,9],[41,9],[42,9],[43,9],[8,9],[49,9],[46,9],[47,9],[48,9],[50,9],[9,9],[51,9],[52,9],[53,9],[55,9],[54,9],[1,9],[92,62],[102,63],[91,62],[112,64],[83,65],[82,66],[111,67],[105,68],[110,69],[85,70],[99,71],[84,72],[108,73],[80,74],[79,67],[109,75],[81,76],[86,77],[87,9],[90,77],[77,9],[113,78],[103,79],[94,80],[95,81],[97,82],[93,83],[96,84],[106,67],[88,85],[89,86],[98,87],[78,88],[101,79],[100,77],[104,9],[107,89]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lagless/math",
3
- "version": "0.0.36",
4
- "license": "MIT",
3
+ "version": "0.0.39",
4
+ "license": "CC-BY-NC-4.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/GbGr/lagless",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "tslib": "^2.3.0",
25
- "@lagless/deterministic-math": "^0.1.8"
25
+ "@lagless/deterministic-math": "^0.1.9"
26
26
  },
27
27
  "files": [
28
28
  "dist",