(vec: Vec2)
| 29 | return new Vec2(this.x - vec.x, this.y - vec.y); |
| 30 | } |
| 31 | mul(vec: Vec2): Vec2 { |
| 32 | return new Vec2(this.x * vec.x, this.y * vec.y); |
| 33 | } |
| 34 | div(vec: Vec2): Vec2 { |
| 35 | return new Vec2(this.x / vec.x, this.y / vec.y); |
| 36 | } |
no outgoing calls
no test coverage detected