@lakuna/umath 1.3.5 → 1.3.7
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 +1 -1
- package/dist/algorithms/combinations.d.ts +7 -0
- package/dist/algorithms/combinations.d.ts.map +1 -1
- package/dist/algorithms/combinations.js +7 -0
- package/dist/algorithms/combinations.js.map +1 -1
- package/dist/algorithms/degreesToRadians.d.ts +7 -0
- package/dist/algorithms/degreesToRadians.d.ts.map +1 -1
- package/dist/algorithms/degreesToRadians.js +7 -0
- package/dist/algorithms/degreesToRadians.js.map +1 -1
- package/dist/algorithms/factorial.d.ts +6 -0
- package/dist/algorithms/factorial.d.ts.map +1 -1
- package/dist/algorithms/factorial.js +8 -1
- package/dist/algorithms/factorial.js.map +1 -1
- package/dist/algorithms/fibonacci.d.ts +6 -1
- package/dist/algorithms/fibonacci.d.ts.map +1 -1
- package/dist/algorithms/fibonacci.js +5 -0
- package/dist/algorithms/fibonacci.js.map +1 -1
- package/dist/algorithms/greatestCommonDivisor.d.ts +14 -0
- package/dist/algorithms/greatestCommonDivisor.d.ts.map +1 -1
- package/dist/algorithms/greatestCommonDivisor.js +2 -0
- package/dist/algorithms/greatestCommonDivisor.js.map +1 -1
- package/dist/algorithms/hypergeometricPmf.d.ts +9 -0
- package/dist/algorithms/hypergeometricPmf.d.ts.map +1 -1
- package/dist/algorithms/hypergeometricPmf.js +9 -0
- package/dist/algorithms/hypergeometricPmf.js.map +1 -1
- package/dist/algorithms/isPrime.d.ts +6 -0
- package/dist/algorithms/isPrime.d.ts.map +1 -1
- package/dist/algorithms/isPrime.js +7 -0
- package/dist/algorithms/isPrime.js.map +1 -1
- package/dist/algorithms/permutations.d.ts +7 -0
- package/dist/algorithms/permutations.d.ts.map +1 -1
- package/dist/algorithms/permutations.js +7 -0
- package/dist/algorithms/permutations.js.map +1 -1
- package/dist/algorithms/primeFactorization.d.ts +6 -0
- package/dist/algorithms/primeFactorization.d.ts.map +1 -1
- package/dist/algorithms/primeFactorization.js +6 -0
- package/dist/algorithms/primeFactorization.js.map +1 -1
- package/dist/algorithms/radiansToDegrees.d.ts +7 -0
- package/dist/algorithms/radiansToDegrees.d.ts.map +1 -1
- package/dist/algorithms/radiansToDegrees.js +7 -0
- package/dist/algorithms/radiansToDegrees.js.map +1 -1
- package/dist/algorithms/summation.d.ts +8 -0
- package/dist/algorithms/summation.d.ts.map +1 -1
- package/dist/algorithms/summation.js +9 -0
- package/dist/algorithms/summation.js.map +1 -1
- package/dist/linalg/DualQuaternion.d.ts +410 -27
- package/dist/linalg/DualQuaternion.d.ts.map +1 -1
- package/dist/linalg/DualQuaternion.js +429 -54
- package/dist/linalg/DualQuaternion.js.map +1 -1
- package/dist/linalg/Matrix.d.ts +67 -0
- package/dist/linalg/Matrix.d.ts.map +1 -1
- package/dist/linalg/Matrix2.d.ts +309 -20
- package/dist/linalg/Matrix2.d.ts.map +1 -1
- package/dist/linalg/Matrix2.js +321 -40
- package/dist/linalg/Matrix2.js.map +1 -1
- package/dist/linalg/Matrix3.d.ts +424 -26
- package/dist/linalg/Matrix3.d.ts.map +1 -1
- package/dist/linalg/Matrix3.js +437 -52
- package/dist/linalg/Matrix3.js.map +1 -1
- package/dist/linalg/Matrix4.d.ts +766 -42
- package/dist/linalg/Matrix4.d.ts.map +1 -1
- package/dist/linalg/Matrix4.js +789 -84
- package/dist/linalg/Matrix4.js.map +1 -1
- package/dist/linalg/Quaternion.d.ts +359 -21
- package/dist/linalg/Quaternion.d.ts.map +1 -1
- package/dist/linalg/Quaternion.js +380 -42
- package/dist/linalg/Quaternion.js.map +1 -1
- package/dist/linalg/SlowMatrix.d.ts +70 -0
- package/dist/linalg/SlowMatrix.d.ts.map +1 -1
- package/dist/linalg/SlowMatrix.js +71 -0
- package/dist/linalg/SlowMatrix.js.map +1 -1
- package/dist/linalg/SlowSquareMatrix.d.ts +55 -0
- package/dist/linalg/SlowSquareMatrix.d.ts.map +1 -1
- package/dist/linalg/SlowSquareMatrix.js +58 -0
- package/dist/linalg/SlowSquareMatrix.js.map +1 -1
- package/dist/linalg/SquareMatrix.d.ts +23 -0
- package/dist/linalg/SquareMatrix.d.ts.map +1 -1
- package/dist/linalg/Vector.d.ts +123 -0
- package/dist/linalg/Vector.d.ts.map +1 -1
- package/dist/linalg/Vector2.d.ts +450 -33
- package/dist/linalg/Vector2.d.ts.map +1 -1
- package/dist/linalg/Vector2.js +480 -66
- package/dist/linalg/Vector2.js.map +1 -1
- package/dist/linalg/Vector3.d.ts +542 -38
- package/dist/linalg/Vector3.d.ts.map +1 -1
- package/dist/linalg/Vector3.js +579 -76
- package/dist/linalg/Vector3.js.map +1 -1
- package/dist/linalg/Vector4.d.ts +416 -30
- package/dist/linalg/Vector4.d.ts.map +1 -1
- package/dist/linalg/Vector4.js +441 -60
- package/dist/linalg/Vector4.js.map +1 -1
- package/dist/types/AxisAngle.d.ts +3 -0
- package/dist/types/AxisAngle.d.ts.map +1 -1
- package/dist/types/FieldOfView.d.ts +5 -0
- package/dist/types/FieldOfView.d.ts.map +1 -1
- package/dist/utility/BigNumber.d.ts +36 -0
- package/dist/utility/BigNumber.d.ts.map +1 -1
- package/dist/utility/BigNumber.js +42 -0
- package/dist/utility/BigNumber.js.map +1 -1
- package/dist/utility/MagnitudeError.d.ts +5 -0
- package/dist/utility/MagnitudeError.d.ts.map +1 -1
- package/dist/utility/MagnitudeError.js +5 -0
- package/dist/utility/MagnitudeError.js.map +1 -1
- package/dist/utility/MatrixSizeError.d.ts +5 -0
- package/dist/utility/MatrixSizeError.d.ts.map +1 -1
- package/dist/utility/MatrixSizeError.js +5 -0
- package/dist/utility/MatrixSizeError.js.map +1 -1
- package/dist/utility/PartialMatrixError.d.ts +5 -0
- package/dist/utility/PartialMatrixError.d.ts.map +1 -1
- package/dist/utility/PartialMatrixError.js +5 -0
- package/dist/utility/PartialMatrixError.js.map +1 -1
- package/dist/utility/SingularMatrixError.d.ts +8 -0
- package/dist/utility/SingularMatrixError.d.ts.map +1 -1
- package/dist/utility/SingularMatrixError.js +8 -0
- package/dist/utility/SingularMatrixError.js.map +1 -1
- package/dist/utility/epsilon.d.ts +1 -0
- package/dist/utility/epsilon.d.ts.map +1 -1
- package/dist/utility/epsilon.js +1 -0
- package/dist/utility/epsilon.js.map +1 -1
- package/package.json +1 -1
- package/src/algorithms/combinations.ts +1 -1
- package/src/algorithms/degreesToRadians.ts +1 -1
- package/src/algorithms/factorial.ts +1 -1
- package/src/algorithms/fibonacci.ts +1 -1
- package/src/algorithms/hypergeometricPmf.ts +1 -1
- package/src/algorithms/isPrime.ts +1 -1
- package/src/algorithms/permutations.ts +1 -1
- package/src/algorithms/primeFactorization.ts +1 -1
- package/src/algorithms/radiansToDegrees.ts +1 -1
- package/src/algorithms/summation.ts +1 -1
- package/src/linalg/DualQuaternion.ts +115 -109
- package/src/linalg/Matrix2.ts +83 -70
- package/src/linalg/Matrix3.ts +107 -94
- package/src/linalg/Matrix4.ts +171 -155
- package/src/linalg/Quaternion.ts +96 -92
- package/src/linalg/SlowMatrix.ts +13 -13
- package/src/linalg/SlowSquareMatrix.ts +11 -11
- package/src/linalg/Vector2.ts +130 -116
- package/src/linalg/Vector3.ts +152 -135
- package/src/linalg/Vector4.ts +121 -104
- package/src/utility/BigNumber.ts +7 -7
package/dist/linalg/Matrix3.d.ts
CHANGED
|
@@ -3,81 +3,479 @@ import type { MatrixLike } from "./Matrix.js";
|
|
|
3
3
|
import type { QuaternionLike } from "./Quaternion.js";
|
|
4
4
|
import type SquareMatrix from "./SquareMatrix.js";
|
|
5
5
|
import type { Vector2Like } from "./Vector2.js";
|
|
6
|
+
/**
|
|
7
|
+
* Numbers arranged into three columns and three rows.
|
|
8
|
+
* @see [Matrix](https://en.wikipedia.org/wiki/Matrix_(mathematics))
|
|
9
|
+
*/
|
|
6
10
|
export interface Matrix3Like extends MatrixLike {
|
|
11
|
+
/** The value in the first column and first row. */
|
|
7
12
|
0: number;
|
|
13
|
+
/** The value in the first column and second row. */
|
|
8
14
|
1: number;
|
|
15
|
+
/** The value in the first column and third row. */
|
|
9
16
|
2: number;
|
|
17
|
+
/** The value in the second column and first row. */
|
|
10
18
|
3: number;
|
|
19
|
+
/** The value in the second column and second row. */
|
|
11
20
|
4: number;
|
|
21
|
+
/** The value in the second column and third row. */
|
|
12
22
|
5: number;
|
|
23
|
+
/** The value in the third column and first row. */
|
|
13
24
|
6: number;
|
|
25
|
+
/** The value in the third column and second row. */
|
|
14
26
|
7: number;
|
|
27
|
+
/** The value in the third column and third row. */
|
|
15
28
|
8: number;
|
|
16
29
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
export declare
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export declare
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
30
|
+
/**
|
|
31
|
+
* Creates a 3x3 matrix-like object.
|
|
32
|
+
* @returns A 3x3 matrix-like object.
|
|
33
|
+
*/
|
|
34
|
+
export declare const createMatrix3Like: () => Float32Array & Matrix3Like;
|
|
35
|
+
/**
|
|
36
|
+
* Create a transformation matrix that represents a rotation by the given angle around the Z-axis.
|
|
37
|
+
* @param r - The angle in radians.
|
|
38
|
+
* @param out - The matrix to store the result in.
|
|
39
|
+
* @returns The transformation matrix.
|
|
40
|
+
* @see [Rotation matrix](https://en.wikipedia.org/wiki/Rotation_matrix)
|
|
41
|
+
*/
|
|
42
|
+
export declare const fromRotation: <T extends Matrix3Like>(r: number, out: T) => T;
|
|
43
|
+
/**
|
|
44
|
+
* Create a transformation matrix that represents a scaling by the given vector.
|
|
45
|
+
* @param vector - The scaling vector.
|
|
46
|
+
* @param out - The matrix to store the result in.
|
|
47
|
+
* @returns The transformation matrix.
|
|
48
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
49
|
+
*/
|
|
50
|
+
export declare const fromScaling: <T extends Matrix3Like>(vector: Vector2Like, out: T) => T;
|
|
51
|
+
/**
|
|
52
|
+
* Create a transformation matrix that represents a translation by the given vector.
|
|
53
|
+
* @param vector - The translation vector.
|
|
54
|
+
* @param out - The matrix to store the result in.
|
|
55
|
+
* @returns The transformation matrix.
|
|
56
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
57
|
+
*/
|
|
58
|
+
export declare const fromTranslation: <T extends Matrix3Like>(vector: Vector2Like, out: T) => T;
|
|
59
|
+
/**
|
|
60
|
+
* Create a transformation matrix that represents a rotation by the given quaternion.
|
|
61
|
+
* @param quaternion - The quaternion.
|
|
62
|
+
* @param out - The matrix to store the result in.
|
|
63
|
+
* @returns The transformation matrix.
|
|
64
|
+
* @see [Quaternion](https://en.wikipedia.org/wiki/Quaternion)
|
|
65
|
+
* @see [Rotation matrix](https://en.wikipedia.org/wiki/Rotation_matrix)
|
|
66
|
+
*/
|
|
67
|
+
export declare const fromQuaternion: <T extends Matrix3Like>(quaternion: QuaternionLike, out: T) => T;
|
|
68
|
+
/**
|
|
69
|
+
* Calculate a three-by-three normal (inverse transpose) matrix from a four-by-four matrix.
|
|
70
|
+
* @param matrix - The four-by-four matrix.
|
|
71
|
+
* @param out - The matrix to store the result in.
|
|
72
|
+
* @returns The normal matrix.
|
|
73
|
+
* @see [Normal matrix](https://en.wikipedia.org/wiki/Normal_matrix)
|
|
74
|
+
*/
|
|
75
|
+
export declare const normalFromMatrix4: <T extends Matrix3Like>(matrix: Matrix4Like, out: T) => T;
|
|
76
|
+
/**
|
|
77
|
+
* Generate a two-dimensional projection matrix with the given bounds.
|
|
78
|
+
* @param width - The width of the projection.
|
|
79
|
+
* @param height - The height of the projection.
|
|
80
|
+
* @param out - The matrix to store the result in.
|
|
81
|
+
* @returns The projection matrix.
|
|
82
|
+
* @see [Camera matrix](https://en.wikipedia.org/wiki/Camera_matrix)
|
|
83
|
+
* @see [3D projection](https://en.wikipedia.org/wiki/3D_projection)
|
|
84
|
+
*/
|
|
85
|
+
export declare const projection: <T extends Matrix3Like>(width: number, height: number, out: T) => T;
|
|
86
|
+
/**
|
|
87
|
+
* Create a three-by-three matrix from the upper-left corner of a four-by-four matrix.
|
|
88
|
+
* @param matrix - The four-by-four matrix.
|
|
89
|
+
* @param out - The matrix to store the result in.
|
|
90
|
+
* @returns The three-by-three matrix.
|
|
91
|
+
*/
|
|
92
|
+
export declare const fromMatrix4: <T extends Matrix3Like>(matrix: Matrix4Like, out: T) => T;
|
|
93
|
+
/**
|
|
94
|
+
* Create a two-by-two matrix with the given values.
|
|
95
|
+
* @param c0r0 - The value in the first column and first row.
|
|
96
|
+
* @param c0r1 - The value in the first column and second row.
|
|
97
|
+
* @param c0r2 - The value in the first column and third row.
|
|
98
|
+
* @param c1r0 - The value in the second column and first row.
|
|
99
|
+
* @param c1r1 - The value in the second column and second row.
|
|
100
|
+
* @param c1r2 - The value in the second column and third row.
|
|
101
|
+
* @param c2r0 - The value in the third column and first row.
|
|
102
|
+
* @param c2r1 - The value in the third column and second row.
|
|
103
|
+
* @param c2r2 - The value in the third column and third row.
|
|
104
|
+
* @param out - The matrix to store the result in.
|
|
105
|
+
* @returns The matrix.
|
|
106
|
+
*/
|
|
107
|
+
export declare const fromValues: <T extends Matrix3Like>(c0r0: number, c0r1: number, c0r2: number, c1r0: number, c1r1: number, c1r2: number, c2r0: number, c2r1: number, c2r2: number, out: T) => T;
|
|
108
|
+
/**
|
|
109
|
+
* Determine whether or not two matrices are roughly equivalent.
|
|
110
|
+
* @param a - The first matrix.
|
|
111
|
+
* @param b - The second matrix.
|
|
112
|
+
* @returns Whether or not the matrices are equivalent.
|
|
113
|
+
*/
|
|
114
|
+
export declare const equals: (a: Matrix3Like, b: Matrix3Like) => boolean;
|
|
115
|
+
/**
|
|
116
|
+
* Determine whether or not two matrices are exactly equivalent.
|
|
117
|
+
* @param a - The first matrix.
|
|
118
|
+
* @param b - The second matrix.
|
|
119
|
+
* @returns Whether or not the matrices are equivalent.
|
|
120
|
+
*/
|
|
121
|
+
export declare const exactEquals: (a: Matrix3Like, b: Matrix3Like) => boolean;
|
|
122
|
+
/**
|
|
123
|
+
* Add two matrices.
|
|
124
|
+
* @param a - The augend.
|
|
125
|
+
* @param b - The addend.
|
|
126
|
+
* @param out - The matrix to store the result in.
|
|
127
|
+
* @returns The sum.
|
|
128
|
+
* @see [Matrix addition](https://en.wikipedia.org/wiki/Matrix_addition)
|
|
129
|
+
*/
|
|
130
|
+
export declare const add: <T extends Matrix3Like>(a: Matrix3Like, b: Matrix3Like, out: T) => T;
|
|
131
|
+
/**
|
|
132
|
+
* Calculate the adjugate of a matrix.
|
|
133
|
+
* @param matrix - The matrix.
|
|
134
|
+
* @param out - The matrix to store the result in.
|
|
135
|
+
* @returns The adjugate of the matrix.
|
|
136
|
+
* @see [Adjugate matrix](https://en.wikipedia.org/wiki/Adjugate_matrix)
|
|
137
|
+
*/
|
|
138
|
+
export declare const adjoint: <T extends Matrix3Like>(matrix: Matrix3Like, out: T) => T;
|
|
139
|
+
/**
|
|
140
|
+
* Copy the values of one matrix into another.
|
|
141
|
+
* @param matrix - The matrix to copy.
|
|
142
|
+
* @param out - The matrix to store the result in.
|
|
143
|
+
* @returns This matrix.
|
|
144
|
+
*/
|
|
145
|
+
export declare const copy: <T extends Matrix3Like>(matrix: Matrix3Like, out: T) => T;
|
|
146
|
+
/**
|
|
147
|
+
* Calculate the Frobenius norm of a matrix.
|
|
148
|
+
* @param matrix - The matrix.
|
|
149
|
+
* @returns The Frobenius norm.
|
|
150
|
+
* @see [Matrix norm](https://en.wikipedia.org/wiki/Matrix_norm)
|
|
151
|
+
*/
|
|
152
|
+
export declare const frob: (matrix: Matrix3Like) => number;
|
|
153
|
+
/**
|
|
154
|
+
* Multiply two matrices.
|
|
155
|
+
* @param a - The multiplicand.
|
|
156
|
+
* @param b - The multiplier.
|
|
157
|
+
* @param out - The matrix to store the result in.
|
|
158
|
+
* @returns The product of the matrices.
|
|
159
|
+
* @see [Matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication)
|
|
160
|
+
*/
|
|
161
|
+
export declare const multiply: <T extends Matrix3Like>(a: Matrix3Like, b: Matrix3Like, out: T) => T;
|
|
162
|
+
/**
|
|
163
|
+
* Multiply a matrix by a scalar value.
|
|
164
|
+
* @param matrix - The multiplicand.
|
|
165
|
+
* @param scalar - The multiplier.
|
|
166
|
+
* @param out - The matrix to store the result in.
|
|
167
|
+
* @returns The product.
|
|
168
|
+
* @see [Matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication)
|
|
169
|
+
*/
|
|
170
|
+
export declare const multiplyScalar: <T extends Matrix3Like>(matrix: Matrix3Like, scalar: number, out: T) => T;
|
|
171
|
+
/**
|
|
172
|
+
* Add a matrix to another after multiplying the other by a scalar.
|
|
173
|
+
* @param a - The augend.
|
|
174
|
+
* @param b - The addend.
|
|
175
|
+
* @param scalar - The multiplier.
|
|
176
|
+
* @param out - The matrix to store the result in.
|
|
177
|
+
* @returns The sum.
|
|
178
|
+
* @see [Matrix addition](https://en.wikipedia.org/wiki/Matrix_addition)
|
|
179
|
+
* @see [Matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication)
|
|
180
|
+
*/
|
|
181
|
+
export declare const multiplyScalarAndAdd: <T extends Matrix3Like>(a: Matrix3Like, b: Matrix3Like, scalar: number, out: T) => T;
|
|
182
|
+
/**
|
|
183
|
+
* Subtract two matrices.
|
|
184
|
+
* @param a - The minuend.
|
|
185
|
+
* @param b - The subtrahend.
|
|
186
|
+
* @param out - The matrix to store the result in.
|
|
187
|
+
* @returns The difference.
|
|
188
|
+
* @see [Matrix addition](https://en.wikipedia.org/wiki/Matrix_addition)
|
|
189
|
+
*/
|
|
190
|
+
export declare const subtract: <T extends Matrix3Like>(a: Matrix3Like, b: Matrix3Like, out: T) => T;
|
|
191
|
+
/**
|
|
192
|
+
* Transpose a matrix.
|
|
193
|
+
* @param matrix - The matrix.
|
|
194
|
+
* @param out - The matrix to store the result in.
|
|
195
|
+
* @returns The transpose of the matrix.
|
|
196
|
+
* @see [Transpose](https://en.wikipedia.org/wiki/Transpose)
|
|
197
|
+
*/
|
|
198
|
+
export declare const transpose: <T extends Matrix3Like>(matrix: Matrix3Like, out: T) => T;
|
|
199
|
+
/**
|
|
200
|
+
* Calculate the determinant of a matrix.
|
|
201
|
+
* @param matrix - The matrix.
|
|
202
|
+
* @returns The determinant.
|
|
203
|
+
* @see [Determinant](https://en.wikipedia.org/wiki/Determinant)
|
|
204
|
+
*/
|
|
205
|
+
export declare const determinant: (matrix: Matrix3Like) => number;
|
|
206
|
+
/**
|
|
207
|
+
* Reset a matrix to identity.
|
|
208
|
+
* @param out - The matrix to store the result in.
|
|
209
|
+
* @returns The matrix.
|
|
210
|
+
* @see [Identity matrix](https://en.wikipedia.org/wiki/Identity_matrix)
|
|
211
|
+
*/
|
|
212
|
+
export declare const identity: <T extends Matrix3Like>(out: T) => T;
|
|
213
|
+
/**
|
|
214
|
+
* Invert a matrix.
|
|
215
|
+
* @param matrix - The matrix.
|
|
216
|
+
* @param out - The matrix to store the result in.
|
|
217
|
+
* @returns The inverted matrix.
|
|
218
|
+
* @see [Invertible matrix](https://en.wikipedia.org/wiki/Invertible_matrix)
|
|
219
|
+
*/
|
|
220
|
+
export declare const invert: <T extends Matrix3Like>(matrix: Matrix3Like, out: T) => T;
|
|
221
|
+
/**
|
|
222
|
+
* Rotate a matrix by the given angle around the Z-axis.
|
|
223
|
+
* @param matrix - The matrix.
|
|
224
|
+
* @param radians - The angle in radians.
|
|
225
|
+
* @param out - The matrix to store the result in.
|
|
226
|
+
* @returns The rotated matrix.
|
|
227
|
+
* @see [Rotation matrix](https://en.wikipedia.org/wiki/Rotation_matrix)
|
|
228
|
+
*/
|
|
229
|
+
export declare const rotate: <T extends Matrix3Like>(matrix: Matrix3Like, radians: number, out: T) => T;
|
|
230
|
+
/**
|
|
231
|
+
* Scale a matrix by the given vector.
|
|
232
|
+
* @param matrix - The matrix.
|
|
233
|
+
* @param vector - The scaling vector.
|
|
234
|
+
* @param out - The matrix to store the result in.
|
|
235
|
+
* @returns The scaled matrix.
|
|
236
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
237
|
+
*/
|
|
238
|
+
export declare const scale: <T extends Matrix3Like>(matrix: Matrix3Like, vector: Vector2Like, out: T) => T;
|
|
239
|
+
/**
|
|
240
|
+
* Translate a matrix by the given vector.
|
|
241
|
+
* @param matrix - The matrix.
|
|
242
|
+
* @param vector - The translation vector.
|
|
243
|
+
* @param out - The matrix to store the result in.
|
|
244
|
+
* @returns The translated matrix.
|
|
245
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
246
|
+
*/
|
|
247
|
+
export declare const translate: <T extends Matrix3Like>(matrix: Matrix3Like, vector: Vector2Like, out: T) => T;
|
|
248
|
+
/**
|
|
249
|
+
* A three-by-three matrix.
|
|
250
|
+
* @see [Matrix](https://en.wikipedia.org/wiki/Matrix_(mathematics))
|
|
251
|
+
*/
|
|
43
252
|
export default class Matrix3 extends Float32Array implements SquareMatrix, Matrix3Like {
|
|
253
|
+
/**
|
|
254
|
+
* Create a transformation matrix that represents a rotation by the given angle around the Z-axis.
|
|
255
|
+
* @param r - The angle in radians.
|
|
256
|
+
* @param out - The matrix to store the result in.
|
|
257
|
+
* @returns The transformation matrix.
|
|
258
|
+
* @see [Rotation matrix](https://en.wikipedia.org/wiki/Rotation_matrix)
|
|
259
|
+
*/
|
|
44
260
|
static fromRotation<T extends Matrix3Like>(r: number, out?: T): T;
|
|
261
|
+
/**
|
|
262
|
+
* Create a transformation matrix that represents a scaling by the given vector.
|
|
263
|
+
* @param vector - The scaling vector.
|
|
264
|
+
* @param out - The matrix to store the result in.
|
|
265
|
+
* @returns The transformation matrix.
|
|
266
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
267
|
+
*/
|
|
45
268
|
static fromScaling<T extends Matrix3Like>(vector: Vector2Like, out?: T): T;
|
|
269
|
+
/**
|
|
270
|
+
* Create a transformation matrix that represents a translation by the given vector.
|
|
271
|
+
* @param vector - The translation vector.
|
|
272
|
+
* @param out - The matrix to store the result in.
|
|
273
|
+
* @returns The transformation matrix.
|
|
274
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
275
|
+
*/
|
|
46
276
|
static fromTranslation<T extends Matrix3Like>(vector: Vector2Like, out?: T): T;
|
|
277
|
+
/**
|
|
278
|
+
* Create a transformation matrix that represents a rotation by the given quaternion.
|
|
279
|
+
* @param quaternion - The quaternion.
|
|
280
|
+
* @param out - The matrix to store the result in.
|
|
281
|
+
* @returns The transformation matrix.
|
|
282
|
+
* @see [Quaternion](https://en.wikipedia.org/wiki/Quaternion)
|
|
283
|
+
* @see [Rotation matrix](https://en.wikipedia.org/wiki/Rotation_matrix)
|
|
284
|
+
*/
|
|
47
285
|
static fromQuaternion<T extends Matrix3Like>(quaternion: QuaternionLike, out?: T): T;
|
|
286
|
+
/**
|
|
287
|
+
* Calculate a three-by-three normal (inverse transpose) matrix from a four-by-four matrix.
|
|
288
|
+
* @param matrix - The four-by-four matrix.
|
|
289
|
+
* @param out - The matrix to store the result in.
|
|
290
|
+
* @returns The normal matrix.
|
|
291
|
+
* @see [Normal matrix](https://en.wikipedia.org/wiki/Normal_matrix)
|
|
292
|
+
*/
|
|
48
293
|
static normalFromMatrix4<T extends Matrix3Like>(matrix: Matrix4Like, out?: T): T;
|
|
294
|
+
/**
|
|
295
|
+
* Generate a two-dimensional projection matrix with the given bounds.
|
|
296
|
+
* @param width - The width of the projection.
|
|
297
|
+
* @param height - The height of the projection.
|
|
298
|
+
* @param out - The matrix to store the result in.
|
|
299
|
+
* @returns The projection matrix.
|
|
300
|
+
* @see [Camera matrix](https://en.wikipedia.org/wiki/Camera_matrix)
|
|
301
|
+
* @see [3D projection](https://en.wikipedia.org/wiki/3D_projection)
|
|
302
|
+
*/
|
|
49
303
|
static projection<T extends Matrix3Like>(width: number, height: number, out?: T): T;
|
|
304
|
+
/**
|
|
305
|
+
* Create a three-by-three matrix from the upper-left corner of a four-by-four matrix.
|
|
306
|
+
* @param matrix - The four-by-four matrix.
|
|
307
|
+
* @param out - The matrix to store the result in.
|
|
308
|
+
* @returns The three-by-three matrix.
|
|
309
|
+
*/
|
|
50
310
|
static fromMatrix4<T extends Matrix3Like>(matrix: Matrix4Like, out?: T): T;
|
|
311
|
+
/**
|
|
312
|
+
* Create a two-by-two matrix with the given values.
|
|
313
|
+
* @param c0r0 - The value in the first column and first row.
|
|
314
|
+
* @param c0r1 - The value in the first column and second row.
|
|
315
|
+
* @param c0r2 - The value in the first column and third row.
|
|
316
|
+
* @param c1r0 - The value in the second column and first row.
|
|
317
|
+
* @param c1r1 - The value in the second column and second row.
|
|
318
|
+
* @param c1r2 - The value in the second column and third row.
|
|
319
|
+
* @param c2r0 - The value in the third column and first row.
|
|
320
|
+
* @param c2r1 - The value in the third column and second row.
|
|
321
|
+
* @param c2r2 - The value in the third column and third row.
|
|
322
|
+
* @param out - The matrix to store the result in.
|
|
323
|
+
* @returns The matrix.
|
|
324
|
+
*/
|
|
51
325
|
static fromValues<T extends Matrix3Like>(c0r0: number, c0r1: number, c0r2: number, c1r0: number, c1r1: number, c1r2: number, c2r0: number, c2r1: number, c2r2: number, out?: T): T;
|
|
326
|
+
/**
|
|
327
|
+
* Create a three-by-three identity matrix.
|
|
328
|
+
* @see [Identity matrix](https://en.wikipedia.org/wiki/Identity_matrix)
|
|
329
|
+
*/
|
|
52
330
|
constructor();
|
|
331
|
+
/** The value in the first column and first row. */
|
|
53
332
|
0: number;
|
|
333
|
+
/** The value in the first column and second row. */
|
|
54
334
|
1: number;
|
|
335
|
+
/** The value in the first column and third row. */
|
|
55
336
|
2: number;
|
|
337
|
+
/** The value in the second column and first row. */
|
|
56
338
|
3: number;
|
|
339
|
+
/** The value in the second column and second row. */
|
|
57
340
|
4: number;
|
|
341
|
+
/** The value in the second column and third row. */
|
|
58
342
|
5: number;
|
|
343
|
+
/** The value in the third column and first row. */
|
|
59
344
|
6: number;
|
|
345
|
+
/** The value in the third column and second row. */
|
|
60
346
|
7: number;
|
|
347
|
+
/** The value in the third column and third row. */
|
|
61
348
|
8: number;
|
|
349
|
+
/** The number of columns in this matrix. */
|
|
62
350
|
readonly width: 3;
|
|
351
|
+
/** The number of rows in this matrix. */
|
|
63
352
|
readonly height: 3;
|
|
353
|
+
/**
|
|
354
|
+
* Determine whether or not this matrix is roughly equivalent to another.
|
|
355
|
+
* @param matrix - The other matrix.
|
|
356
|
+
* @returns Whether or not the matrices are equivalent.
|
|
357
|
+
*/
|
|
64
358
|
equals(matrix: Matrix3Like): boolean;
|
|
359
|
+
/**
|
|
360
|
+
* Determine whether or not this matrix is exactly equivalent to another.
|
|
361
|
+
* @param matrix - The other matrix.
|
|
362
|
+
* @returns Whether or not the matrices are equivalent.
|
|
363
|
+
*/
|
|
65
364
|
exactEquals(matrix: Matrix3Like): boolean;
|
|
365
|
+
/**
|
|
366
|
+
* Add two matrices of the same size.
|
|
367
|
+
* @param matrix - The other matrix.
|
|
368
|
+
* @param out - The matrix to store the result in.
|
|
369
|
+
* @returns The sum of the matrices.
|
|
370
|
+
* @see [Matrix addition](https://en.wikipedia.org/wiki/Matrix_addition)
|
|
371
|
+
*/
|
|
66
372
|
add<T extends Matrix3Like>(matrix: Matrix3Like, out?: T): T;
|
|
373
|
+
/**
|
|
374
|
+
* Calculate the adjugate of this matrix.
|
|
375
|
+
* @param out - The matrix to store the result in.
|
|
376
|
+
* @returns The adjugate of this matrix.
|
|
377
|
+
* @see [Adjugate matrix](https://en.wikipedia.org/wiki/Adjugate_matrix)
|
|
378
|
+
*/
|
|
67
379
|
adjoint<T extends Matrix3Like>(out?: T): T;
|
|
380
|
+
/**
|
|
381
|
+
* Copy the values from this matrix to another one.
|
|
382
|
+
* @param out - The matrix to store the result in.
|
|
383
|
+
* @returns The copy.
|
|
384
|
+
*/
|
|
68
385
|
clone<T extends Matrix3Like>(out?: T): T;
|
|
386
|
+
/**
|
|
387
|
+
* Copy the values of another matrix into this one.
|
|
388
|
+
* @param matrix - The matrix to copy.
|
|
389
|
+
* @returns This matrix.
|
|
390
|
+
*/
|
|
69
391
|
copy(matrix: Matrix3Like): this;
|
|
392
|
+
/**
|
|
393
|
+
* Get the Frobenius norm of this matrix.
|
|
394
|
+
* @see [Matrix norm](https://en.wikipedia.org/wiki/Matrix_norm)
|
|
395
|
+
*/
|
|
70
396
|
get frob(): number;
|
|
397
|
+
/**
|
|
398
|
+
* Multiply this matrix by another.
|
|
399
|
+
* @param matrix - The other matrix.
|
|
400
|
+
* @param out - The matrix to store the result in.
|
|
401
|
+
* @returns The product of the matrices.
|
|
402
|
+
* @see [Matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication)
|
|
403
|
+
*/
|
|
71
404
|
multiply<T extends Matrix3Like>(matrix: Matrix3Like, out?: T): T;
|
|
405
|
+
/**
|
|
406
|
+
* Multiply this matrix by a scalar value.
|
|
407
|
+
* @param scalar - The scalar value.
|
|
408
|
+
* @param out - The matrix to store the result in.
|
|
409
|
+
* @returns The product of the matrix and the scalar value.
|
|
410
|
+
* @see [Matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication)
|
|
411
|
+
*/
|
|
72
412
|
multiplyScalar<T extends Matrix3Like>(scalar: number, out?: T): T;
|
|
413
|
+
/**
|
|
414
|
+
* Add this matrix to another after multiplying the other by a scalar.
|
|
415
|
+
* @param matrix - The other matrix.
|
|
416
|
+
* @param scalar - The scalar.
|
|
417
|
+
* @param out - The matrix to store the result in.
|
|
418
|
+
* @returns The sum.
|
|
419
|
+
* @see [Matrix addition](https://en.wikipedia.org/wiki/Matrix_addition)
|
|
420
|
+
* @see [Matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication)
|
|
421
|
+
*/
|
|
73
422
|
multiplyScalarAndAdd<T extends Matrix3Like>(matrix: Matrix3Like, scalar: number, out?: T): T;
|
|
423
|
+
/**
|
|
424
|
+
* Subtract another matrix from this one.
|
|
425
|
+
* @param matrix - The other matrix.
|
|
426
|
+
* @param out - The matrix to store the result in.
|
|
427
|
+
* @returns The difference between the matrices.
|
|
428
|
+
* @see [Matrix addition](https://en.wikipedia.org/wiki/Matrix_addition)
|
|
429
|
+
*/
|
|
74
430
|
subtract<T extends Matrix3Like>(matrix: Matrix3Like, out?: T): T;
|
|
431
|
+
/**
|
|
432
|
+
* Transpose this matrix.
|
|
433
|
+
* @param out - The matrix to store the result in.
|
|
434
|
+
* @returns The transpose of this matrix.
|
|
435
|
+
* @see [Transpose](https://en.wikipedia.org/wiki/Transpose)
|
|
436
|
+
*/
|
|
75
437
|
transpose<T extends Matrix3Like>(out?: T): T;
|
|
438
|
+
/**
|
|
439
|
+
* Get the determinant of this matrix.
|
|
440
|
+
* @see [Determinant](https://en.wikipedia.org/wiki/Determinant)
|
|
441
|
+
*/
|
|
76
442
|
get determinant(): number;
|
|
443
|
+
/**
|
|
444
|
+
* Reset this matrix to identity.
|
|
445
|
+
* @returns This matrix.
|
|
446
|
+
* @see [Identity matrix](https://en.wikipedia.org/wiki/Identity_matrix)
|
|
447
|
+
*/
|
|
77
448
|
identity(): this;
|
|
449
|
+
/**
|
|
450
|
+
* Invert this matrix.
|
|
451
|
+
* @param out - The matrix to store the result in.
|
|
452
|
+
* @returns The inverted matrix.
|
|
453
|
+
* @see [Invertible matrix](https://en.wikipedia.org/wiki/Invertible_matrix)
|
|
454
|
+
*/
|
|
78
455
|
invert<T extends Matrix3Like>(out?: T): T;
|
|
456
|
+
/**
|
|
457
|
+
* Rotate this matrix by the given angle around the Z-axis.
|
|
458
|
+
* @param r - The angle in radians.
|
|
459
|
+
* @param out - The matrix to store the result in.
|
|
460
|
+
* @returns The rotated matrix.
|
|
461
|
+
* @see [Rotation matrix](https://en.wikipedia.org/wiki/Rotation_matrix)
|
|
462
|
+
*/
|
|
79
463
|
rotate<T extends Matrix3Like>(r: number, out?: T): T;
|
|
464
|
+
/**
|
|
465
|
+
* Scale this matrix by the given vector.
|
|
466
|
+
* @param vector - The scaling vector.
|
|
467
|
+
* @param out - The matrix to store the result in.
|
|
468
|
+
* @returns The scaled matrix.
|
|
469
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
470
|
+
*/
|
|
80
471
|
scale<T extends Matrix3Like>(vector: Vector2Like, out?: T): T;
|
|
472
|
+
/**
|
|
473
|
+
* Translate this matrix by the given vector.
|
|
474
|
+
* @param vector - The translation vector.
|
|
475
|
+
* @param out - The matrix to store the result in.
|
|
476
|
+
* @returns The translated matrix.
|
|
477
|
+
* @see [Transformation matrix](https://en.wikipedia.org/wiki/Transformation_matrix)
|
|
478
|
+
*/
|
|
81
479
|
translate<T extends Matrix3Like>(vector: Vector2Like, out?: T): T;
|
|
82
480
|
}
|
|
83
481
|
//# sourceMappingURL=Matrix3.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Matrix3.d.ts","sourceRoot":"","sources":["../../src/linalg/Matrix3.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEtD,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAC;AAClD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"Matrix3.d.ts","sourceRoot":"","sources":["../../src/linalg/Matrix3.ts"],"names":[],"mappings":"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"}
|