* Return a copy of this matrix. * If this matrix is 4x4, a 4x4 matrix with exactly the same entries will be * generated. The same is true if this matrix is 3x3 or any NxN matrix. * * This method is useful when you need to preserve the current state of a matrix * while performing opera
()
| 313 | * } |
| 314 | */ |
| 315 | copy() { |
| 316 | return new Matrix(this.matrix); |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Creates a copy of the current matrix instance. |
no outgoing calls
no test coverage detected