| 156 | return df::coord2d(pos.x - view.first.x, pos.y - view.first.y); |
| 157 | } |
| 158 | df::coord2d global(df::coord2d pos) const { |
| 159 | return df::coord2d(pos.x + view.first.x, pos.y + view.first.y); |
| 160 | } |
| 161 | df::coord2d global(int x, int y) const { |
| 162 | return df::coord2d(x + view.first.x, y + view.first.y); |
| 163 | } |