| 120 | Point<T> RightTop() const { return Point<T>(m_maxX, m_maxY); } |
| 121 | Point<T> RightBottom() const { return Point<T>(m_maxX, m_minY); } |
| 122 | Point<T> LeftBottom() const { return Point<T>(m_minX, m_minY); } |
| 123 | |
| 124 | template <typename Fn> |
| 125 | void ForEachCorner(Fn && fn) const |
no outgoing calls