| 132 | |
| 133 | template <typename Fn> |
| 134 | void ForEachSide(Fn && fn) const |
| 135 | { |
| 136 | fn(LeftTop(), LeftBottom()); |
| 137 | fn(LeftBottom(), RightBottom()); |
| 138 | fn(RightBottom(), RightTop()); |
| 139 | fn(RightTop(), LeftTop()); |
| 140 | } |
| 141 | |
| 142 | bool IsIntersect(Rect const & r) const |
| 143 | { |
no outgoing calls
no test coverage detected