| 33 | size_t GetBottomRight() const { return m_bottomRight; } |
| 34 | void CalcSum() { m_sum = m_topLeft + m_topRight + m_bottomLeft + m_bottomRight; } |
| 35 | size_t GetSum() const { return m_sum; } |
| 36 | |
| 37 | private: |
| 38 | m2::RectD m_cell; |
no outgoing calls
no test coverage detected