(other)
| 746 | return other.sub(this).div(2).add(this); |
| 747 | } |
| 748 | eq(other) { |
| 749 | return this.x === other.x && this.y === other.y; |
| 750 | } |
| 751 | isFinite() { |
| 752 | return isFinite(this.x) && isFinite(this.y); |
| 753 | } |
nothing calls this directly
no outgoing calls
no test coverage detected