(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, |
| 582 | y: other, |
| 583 | z: other, |
| 584 | w: other |
| 585 | } : other; |
| 586 | return new Vector4(this.x * x, this.y * y, this.z * z, this.w * w6); |
| 587 | } |
| 588 | div(other) { |
| 589 | const { x , y , z , w: w7 } = typeof other === "number" ? { |
| 590 | x: other, |