| 132 | (rc.top >= top) && (rc.bottom <= bottom); |
| 133 | } |
| 134 | bool Intersects(PRectangle other) { |
| 135 | return (right > other.left) && (left < other.right) && |
| 136 | (bottom > other.top) && (top < other.bottom); |
| 137 | } |
| 138 | void Move(XYPOSITION xDelta, XYPOSITION yDelta) { |
| 139 | left += xDelta; |
| 140 | top += yDelta; |
no outgoing calls
no test coverage detected