| 321 | **********************************************************************/ |
| 322 | |
| 323 | inline bool TBOX::contains(const FCOORD pt) const { |
| 324 | return ((pt.x () >= bot_left.x ()) && |
| 325 | (pt.x () <= top_right.x ()) && |
| 326 | (pt.y () >= bot_left.y ()) && (pt.y () <= top_right.y ())); |
| 327 | } |
| 328 | |
| 329 | |
| 330 | /********************************************************************** |