(other)
| 552 | return this.add(other.sub(this).mul(alpha)); |
| 553 | } |
| 554 | set(other) { |
| 555 | this.x = other.x; |
| 556 | this.y = other.y; |
| 557 | this.z = other.z; |
| 558 | this.w = other.w; |
| 559 | return this; |
| 560 | } |
| 561 | add(other) { |
| 562 | const { x , y , z , w: w4 } = typeof other === "number" ? { |
| 563 | x: other, |
nothing calls this directly
no outgoing calls
no test coverage detected