* Multiplies this vector by the given normal matrix and normalizes * the result. * * @param {Matrix3} m - The normal matrix. * @return {Vector3} A reference to this vector.
( m )
| 435 | * @return {Vector3} A reference to this vector. |
| 436 | */ |
| 437 | applyNormalMatrix( m ) { |
| 438 | |
| 439 | return this.applyMatrix3( m ).normalize(); |
| 440 | |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Multiplies this vector (with an implicit 1 in the 4th dimension) by m, and |
no test coverage detected