()
| 521 | return Math.hypot(this.x, this.y, this.z, this.w); |
| 522 | } |
| 523 | mag2() { |
| 524 | return this.x ** 2 + this.y ** 2 + this.z ** 2 + this.w ** 2; |
| 525 | } |
| 526 | normal() { |
| 527 | return this.div(this.mag()); |
| 528 | } |
nothing calls this directly
no outgoing calls
no test coverage detected