Vein material at pos (even if there is no vein tile), or -1 if none
| 166 | |
| 167 | /// Vein material at pos (even if there is no vein tile), or -1 if none |
| 168 | int16_t veinMaterialAt(df::coord2d p) |
| 169 | { |
| 170 | if (!basemats) init_tiles(true); |
| 171 | return index_tile(basemats->veinmat,p); |
| 172 | } |
| 173 | /// Vein type at pos (even if there is no vein tile) |
| 174 | df::inclusion_type veinTypeAt(df::coord2d p) |
| 175 | { |
nothing calls this directly
no test coverage detected