(other)
| 707 | return this.add(other.sub(this).mul(alpha)); |
| 708 | } |
| 709 | set(other) { |
| 710 | this.x = other.x; |
| 711 | this.y = other.y; |
| 712 | return this; |
| 713 | } |
| 714 | add(other) { |
| 715 | const { x , y } = typeof other === "number" ? { |
| 716 | x: other, |
nothing calls this directly
no outgoing calls
no test coverage detected