(other)
| 568 | return new Vector4(this.x + x, this.y + y, this.z + z, this.w + w4); |
| 569 | } |
| 570 | sub(other) { |
| 571 | const { x , y , z , w: w5 } = typeof other === "number" ? { |
| 572 | x: other, |
| 573 | y: other, |
| 574 | z: other, |
| 575 | w: other |
| 576 | } : other; |
| 577 | return new Vector4(this.x - x, this.y - y, this.z - z, this.w - w5); |
| 578 | } |
| 579 | mul(other) { |
| 580 | const { x , y , z , w: w6 } = typeof other === "number" ? { |
| 581 | x: other, |
nothing calls this directly
no outgoing calls
no test coverage detected