| 415 | } |
| 416 | |
| 417 | void add_materials(EmbarkTileLayout &tile, matdata &data, float amount, int min_z, int max_z) |
| 418 | { |
| 419 | for (int z = min_z; z <= max_z; z++) |
| 420 | data.add(z, map_find(tile.penalty, z, 1) * amount); |
| 421 | } |
| 422 | |
| 423 | bool estimate_materials(color_ostream &out, EmbarkTileLayout &tile, MatMap &layerMats, MatMap &veinMats) |
| 424 | { |
no test coverage detected