| 201 | } |
| 202 | |
| 203 | inline bool RectI::pointInRect(const Point2I &pt) const |
| 204 | { |
| 205 | return (pt.x >= point.x && pt.x < point.x + extent.x && pt.y >= point.y && pt.y < point.y + extent.y); |
| 206 | } |
| 207 | |
| 208 | inline bool RectI::contains(const RectI& R) const |
| 209 | { |
no outgoing calls