(other)
| 5 | this.x = x; this.y = y; |
| 6 | } |
| 7 | plus(other) { |
| 8 | return new Vec(this.x + other.x, this.y + other.y); |
| 9 | } |
| 10 | minus(other) { |
| 11 | return new Vec(this.x - other.x, this.y - other.y); |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected