* Constructs a new Matrix3d object. * @param value - The values to initialize the matrix with.
(...value: ConstructorArg)
| 51 | * @param value - The values to initialize the matrix with. |
| 52 | */ |
| 53 | constructor(...value: ConstructorArg) { |
| 54 | this.val = new Float32Array(16); |
| 55 | reset(this, ...value); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Gets the tx component of the matrix. |