| 111 | } |
| 112 | |
| 113 | template <typename T> Vec2<T> tileToOffsetScreenCoords(Vec3<T> c, TileViewMode v) const |
| 114 | { |
| 115 | return this->tileToScreenCoords(c, v) + Vec2<T>{this->getScreenOffset()}; |
| 116 | } |
| 117 | template <typename T> Vec2<T> tileToOffsetScreenCoords(Vec3<T> c) const |
| 118 | { |
| 119 | return this->tileToScreenCoords(c, this->viewMode) + Vec2<T>{this->getScreenOffset()}; |
no test coverage detected