| 116 | } |
| 117 | |
| 118 | bool inside(const TRect<T>& _value) const |
| 119 | { |
| 120 | return ( |
| 121 | (_value.left >= left) && (_value.right <= right) && (_value.top >= top) && (_value.bottom <= bottom)); |
| 122 | } |
| 123 | |
| 124 | bool intersect(const TRect<T>& _value) const |
| 125 | { |
no outgoing calls
no test coverage detected