| 124 | (rc.top == top) && (rc.bottom == bottom); |
| 125 | } |
| 126 | bool Contains(Point pt) { |
| 127 | return (pt.x >= left) && (pt.x <= right) && |
| 128 | (pt.y >= top) && (pt.y <= bottom); |
| 129 | } |
| 130 | bool Contains(PRectangle rc) { |
| 131 | return (rc.left >= left) && (rc.right <= right) && |
| 132 | (rc.top >= top) && (rc.bottom <= bottom); |
nothing calls this directly
no outgoing calls
no test coverage detected