* return the length (magnitude) of this vector * @returns the length of this vector
()
| 372 | * @returns the length of this vector |
| 373 | */ |
| 374 | length() { |
| 375 | return Math.sqrt(this.length2()); |
| 376 | } |
| 377 | |
| 378 | /** |
| 379 | * Linearly interpolate between this vector and the given one. |
no test coverage detected