| 169 | return inClipGlobal(pos.x, pos.y); |
| 170 | } |
| 171 | bool inClipLocal(int x, int y) const { |
| 172 | return inClipGlobal(x + view.first.x, y + view.first.y); |
| 173 | } |
| 174 | bool inClipLocal(df::coord2d pos) const { |
| 175 | return inClipLocal(pos.x, pos.y); |
| 176 | } |
nothing calls this directly
no test coverage detected