* Check equality to identity matrix * @returns {boolean} indicates whether this is the identity matrix
()
| 63 | * @returns {boolean} indicates whether this is the identity matrix |
| 64 | */ |
| 65 | public isIdentity():boolean { |
| 66 | return this.equals(Matrix3D.identity()); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Computes dot product of two Matrix3D objects |