linearly 0.24.3 → 0.26.0
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/lib/cjs/mat2.d.ts +90 -42
- package/lib/cjs/mat2.d.ts.map +1 -1
- package/lib/cjs/mat2.js +94 -46
- package/lib/cjs/mat2d.d.ts +109 -55
- package/lib/cjs/mat2d.d.ts.map +1 -1
- package/lib/cjs/mat2d.js +112 -58
- package/lib/cjs/mat3.d.ts +93 -45
- package/lib/cjs/mat3.d.ts.map +1 -1
- package/lib/cjs/mat3.js +96 -48
- package/lib/cjs/mat4.d.ts +93 -45
- package/lib/cjs/mat4.d.ts.map +1 -1
- package/lib/cjs/mat4.js +96 -48
- package/lib/cjs/quat.d.ts +62 -29
- package/lib/cjs/quat.d.ts.map +1 -1
- package/lib/cjs/quat.js +64 -31
- package/lib/cjs/scalar.d.ts +164 -54
- package/lib/cjs/scalar.d.ts.map +1 -1
- package/lib/cjs/scalar.js +192 -62
- package/lib/cjs/vec2.d.ts +176 -72
- package/lib/cjs/vec2.d.ts.map +1 -1
- package/lib/cjs/vec2.js +208 -105
- package/lib/cjs/vec3.d.ts +183 -82
- package/lib/cjs/vec3.d.ts.map +1 -1
- package/lib/cjs/vec3.js +210 -93
- package/lib/cjs/vec4.d.ts +159 -67
- package/lib/cjs/vec4.d.ts.map +1 -1
- package/lib/cjs/vec4.js +189 -78
- package/lib/esm/mat2.d.ts +90 -42
- package/lib/esm/mat2.d.ts.map +1 -1
- package/lib/esm/mat2.js +94 -46
- package/lib/esm/mat2d.d.ts +109 -55
- package/lib/esm/mat2d.d.ts.map +1 -1
- package/lib/esm/mat2d.js +112 -58
- package/lib/esm/mat3.d.ts +93 -45
- package/lib/esm/mat3.d.ts.map +1 -1
- package/lib/esm/mat3.js +96 -48
- package/lib/esm/mat4.d.ts +93 -45
- package/lib/esm/mat4.d.ts.map +1 -1
- package/lib/esm/mat4.js +96 -48
- package/lib/esm/quat.d.ts +62 -29
- package/lib/esm/quat.d.ts.map +1 -1
- package/lib/esm/quat.js +64 -31
- package/lib/esm/scalar.d.ts +164 -54
- package/lib/esm/scalar.d.ts.map +1 -1
- package/lib/esm/scalar.js +192 -62
- package/lib/esm/vec2.d.ts +176 -72
- package/lib/esm/vec2.d.ts.map +1 -1
- package/lib/esm/vec2.js +208 -105
- package/lib/esm/vec3.d.ts +183 -82
- package/lib/esm/vec3.d.ts.map +1 -1
- package/lib/esm/vec3.js +210 -93
- package/lib/esm/vec4.d.ts +159 -67
- package/lib/esm/vec4.d.ts.map +1 -1
- package/lib/esm/vec4.js +189 -78
- package/package.json +1 -1
package/lib/cjs/mat4.d.ts
CHANGED
|
@@ -70,8 +70,22 @@ export declare namespace mat4 {
|
|
|
70
70
|
* 0, 0, 0, 1]
|
|
71
71
|
* ```
|
|
72
72
|
* @category Constants
|
|
73
|
+
*
|
|
74
|
+
* @shorthands
|
|
75
|
+
* - {@link id}
|
|
76
|
+
* - {@link ident}
|
|
73
77
|
*/
|
|
74
78
|
export const identity: mat4;
|
|
79
|
+
/**
|
|
80
|
+
* Alias for {@link identity}
|
|
81
|
+
* @category Shorthands
|
|
82
|
+
*/
|
|
83
|
+
export const id: mat4;
|
|
84
|
+
/**
|
|
85
|
+
* Alias for {@link identity}
|
|
86
|
+
* @category Shorthands
|
|
87
|
+
*/
|
|
88
|
+
export const ident: mat4;
|
|
75
89
|
/**
|
|
76
90
|
* @category Constants
|
|
77
91
|
*/
|
|
@@ -82,20 +96,44 @@ export declare namespace mat4 {
|
|
|
82
96
|
export function transpose(a: mat4): mat4;
|
|
83
97
|
/**
|
|
84
98
|
* Inverts a mat4
|
|
99
|
+
*
|
|
100
|
+
* @shorthands
|
|
101
|
+
* - {@link inv}
|
|
85
102
|
*/
|
|
86
103
|
export function invert(a: mat4): mat4 | null;
|
|
104
|
+
/**
|
|
105
|
+
* Alias for {@link invert}
|
|
106
|
+
* @category Shorthands
|
|
107
|
+
*/
|
|
108
|
+
export const inv: typeof invert;
|
|
87
109
|
/**
|
|
88
110
|
* Calculates the adjugate of a mat4
|
|
89
111
|
*/
|
|
90
112
|
export function adjoint(a: mat4): mat4;
|
|
91
113
|
/**
|
|
92
114
|
* Calculates the determinant of a mat4
|
|
115
|
+
*
|
|
116
|
+
* @shorthands
|
|
117
|
+
* - {@link det}
|
|
93
118
|
*/
|
|
94
119
|
export function determinant(a: mat4): number;
|
|
120
|
+
/**
|
|
121
|
+
* Alias for {@link determinant}
|
|
122
|
+
* @category Shorthands
|
|
123
|
+
*/
|
|
124
|
+
export const det: typeof determinant;
|
|
95
125
|
/**
|
|
96
126
|
* Multiplies given mat4's
|
|
127
|
+
*
|
|
128
|
+
* @shorthands
|
|
129
|
+
* - {@link mul}
|
|
97
130
|
*/
|
|
98
131
|
export function multiply(...ms: mat4[]): mat4;
|
|
132
|
+
/**
|
|
133
|
+
* Alias for {@link multiply}
|
|
134
|
+
* @category Shorthands
|
|
135
|
+
*/
|
|
136
|
+
export const mul: typeof multiply;
|
|
99
137
|
/**
|
|
100
138
|
* Translate a mat4 by the given vector
|
|
101
139
|
*
|
|
@@ -131,18 +169,42 @@ export declare namespace mat4 {
|
|
|
131
169
|
/**
|
|
132
170
|
* Creates a matrix from a vector translation
|
|
133
171
|
* @category Generators
|
|
172
|
+
*
|
|
173
|
+
* @shorthands
|
|
174
|
+
* - {@link translation}
|
|
134
175
|
*/
|
|
135
176
|
export function fromTranslation(v: vec3): mat4;
|
|
177
|
+
/**
|
|
178
|
+
* Alias for {@link fromTranslation}
|
|
179
|
+
* @category Shorthands
|
|
180
|
+
*/
|
|
181
|
+
export const translation: typeof fromTranslation;
|
|
136
182
|
/**
|
|
137
183
|
* Creates a matrix from a vector scaling
|
|
138
184
|
* @category Generators
|
|
185
|
+
*
|
|
186
|
+
* @shorthands
|
|
187
|
+
* - {@link scaling}
|
|
139
188
|
*/
|
|
140
189
|
export function fromScaling(v: vec3): mat4;
|
|
190
|
+
/**
|
|
191
|
+
* Alias for {@link fromScaling}
|
|
192
|
+
* @category Shorthands
|
|
193
|
+
*/
|
|
194
|
+
export const scaling: typeof fromScaling;
|
|
141
195
|
/**
|
|
142
196
|
* Creates a matrix from a given angle around a given axis
|
|
143
197
|
* @category Generators
|
|
198
|
+
*
|
|
199
|
+
* @shorthands
|
|
200
|
+
* - {@link rotation}
|
|
144
201
|
*/
|
|
145
202
|
export function fromRotation(deg: number, axis: vec3): mat4 | null;
|
|
203
|
+
/**
|
|
204
|
+
* Alias for {@link fromRotation}
|
|
205
|
+
* @category Shorthands
|
|
206
|
+
*/
|
|
207
|
+
export const rotation: typeof fromRotation;
|
|
146
208
|
/**
|
|
147
209
|
* Creates a matrix from the given angle around the X axis
|
|
148
210
|
* @category Generators
|
|
@@ -358,8 +420,16 @@ export declare namespace mat4 {
|
|
|
358
420
|
export function add(...ms: mat4[]): mat4;
|
|
359
421
|
/**
|
|
360
422
|
* Subtracts matrix b from matrix a
|
|
423
|
+
*
|
|
424
|
+
* @shorthands
|
|
425
|
+
* - {@link sub}
|
|
361
426
|
*/
|
|
362
427
|
export function subtract(...ms: mat4[]): mat4;
|
|
428
|
+
/**
|
|
429
|
+
* Alias for {@link subtract}
|
|
430
|
+
* @category Shorthands
|
|
431
|
+
*/
|
|
432
|
+
export const sub: typeof subtract;
|
|
363
433
|
/**
|
|
364
434
|
* Subtracts b from a
|
|
365
435
|
*/
|
|
@@ -374,63 +444,41 @@ export declare namespace mat4 {
|
|
|
374
444
|
export function multiplyScalarAndAdd(a: mat4, b: mat4, scale: number): mat4;
|
|
375
445
|
/**
|
|
376
446
|
* Returns whether or not the matrices have exactly the same elements in the same position (when compared with `===`)
|
|
447
|
+
*
|
|
448
|
+
* @shorthands
|
|
449
|
+
* - {@link eq}
|
|
377
450
|
*/
|
|
378
451
|
export function exactEquals(a: mat4, b: mat4): boolean;
|
|
379
452
|
/**
|
|
380
|
-
*
|
|
381
|
-
|
|
382
|
-
export function equals(a: mat4, b: mat4): boolean;
|
|
383
|
-
/**
|
|
384
|
-
* Returns a string representation of a mat4
|
|
385
|
-
* @param m matrix to represent as a string
|
|
386
|
-
* @param fractionDigits number of digits to appear after the decimal point
|
|
387
|
-
*/
|
|
388
|
-
export const toString: (m: mat4, fractionDigits?: number) => string;
|
|
389
|
-
/**
|
|
390
|
-
* Alias for {@link identity}
|
|
391
|
-
* @category Aliases
|
|
392
|
-
*/
|
|
393
|
-
export const id: mat4;
|
|
394
|
-
/**
|
|
395
|
-
* Alias for {@link identity}
|
|
396
|
-
* @category Aliases
|
|
453
|
+
* Alias for {@link exactEquals}
|
|
454
|
+
* @category Shorthands
|
|
397
455
|
*/
|
|
398
|
-
export const
|
|
456
|
+
export const eq: typeof exactEquals;
|
|
399
457
|
/**
|
|
400
|
-
*
|
|
401
|
-
*
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
* Alias for {@link multiply}
|
|
406
|
-
* @category Aliases
|
|
458
|
+
* Returns whether or not the matrices have approximately the same elements in the same position.
|
|
459
|
+
*
|
|
460
|
+
* @shorthands
|
|
461
|
+
* - {@link approx}
|
|
462
|
+
* - {@link equals}
|
|
407
463
|
*/
|
|
408
|
-
export
|
|
464
|
+
export function approxEquals(a: mat4, b: mat4): boolean;
|
|
409
465
|
/**
|
|
410
|
-
* Alias for {@link
|
|
411
|
-
* @category
|
|
466
|
+
* Alias for {@link approxEquals}
|
|
467
|
+
* @category Shorthands
|
|
412
468
|
*/
|
|
413
|
-
export const
|
|
469
|
+
export const approx: typeof approxEquals;
|
|
414
470
|
/**
|
|
415
|
-
* Alias for {@link
|
|
416
|
-
* @category
|
|
471
|
+
* Alias for {@link approxEquals}. This is provided for compatibility with gl-matrix.
|
|
472
|
+
* @category Shorthands
|
|
473
|
+
* @deprecated Use {@link approxEquals} instead
|
|
417
474
|
*/
|
|
418
|
-
export const
|
|
419
|
-
/**
|
|
420
|
-
* Alias for {@link fromTranslation}
|
|
421
|
-
* @category Aliases
|
|
422
|
-
*/
|
|
423
|
-
export const translation: typeof fromTranslation;
|
|
475
|
+
export const equals: typeof approxEquals;
|
|
424
476
|
/**
|
|
425
|
-
*
|
|
426
|
-
* @
|
|
427
|
-
|
|
428
|
-
export const rotation: typeof fromRotation;
|
|
429
|
-
/**
|
|
430
|
-
* Alias for {@link fromScaling}
|
|
431
|
-
* @category Aliases
|
|
477
|
+
* Returns a string representation of a mat4
|
|
478
|
+
* @param m matrix to represent as a string
|
|
479
|
+
* @param fractionDigits number of digits to appear after the decimal point
|
|
432
480
|
*/
|
|
433
|
-
export const
|
|
481
|
+
export const toString: (m: mat4, fractionDigits?: number) => string;
|
|
434
482
|
export {};
|
|
435
483
|
}
|
|
436
484
|
//# sourceMappingURL=mat4.d.ts.map
|
package/lib/cjs/mat4.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mat4.d.ts","sourceRoot":"","sources":["../../src/mat4.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,IAAI,EAAC,MAAM,QAAQ,CAAA;AAC3B,OAAO,EAAC,IAAI,EAAC,MAAM,QAAQ,CAAA;AAE3B;;;;;;;;;GASG;AAEH,MAAM,MAAM,IAAI,GAAG,SAAS;IAC3B,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAClD,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAClD,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAClD,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;IAAE,GAAG,EAAE,MAAM;CAClD,CAAA;AAED,yBAAiB,IAAI,CAAC;IACrB;;;OAGG;IAEH,MAAM,MAAM,OAAO,GAAG;QACrB,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAClD,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAClD,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAClD,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;QAAE,GAAG,EAAE,MAAM;KAClD,CAAA;IAED;;;OAGG;IAEH,MAAM,UAAU,EAAE,CACjB,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAClD,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAClD,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAClD,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAChD,IAAI,CAQN;IAED;;;OAGG;IACH,MAAM,UAAU,KAAK,CAAC,CAAC,EAAE,IAAI,GAAG,OAAO,CAEtC;IAED
|
|
1
|
+
{"version":3,"file":"mat4.d.ts","sourceRoot":"","sources":["../../src/mat4.ts"],"names":[],"mappings":"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"}
|