| 82 | double height() |
| 83 | { return m_grid->height(); } |
| 84 | std::string toWKT() |
| 85 | { |
| 86 | std::ostringstream out; |
| 87 | out.setf(std::ios_base::fixed, std::ios_base::floatfield); |
| 88 | out.precision(10); |
| 89 | m_grid->toWKT(out); |
| 90 | return out.str(); |
| 91 | } |
| 92 | private: |
| 93 | std::unique_ptr<hexer::HexGrid> m_grid; |
| 94 | int32_t m_density; |
no test coverage detected