| 599 | |
| 600 | |
| 601 | int InRecScreen(reel x1, reel y1,reel x2, reel y2) |
| 602 | { |
| 603 | |
| 604 | return (Max(x1,x2)>= rxmin) && (Min(x1,x2) <= rxmax) && (Max(y1,y2) >= rymin) && (Min(y1,y2) <= rymax); |
| 605 | } |
| 606 | int InPtScreen( reel x, reel y) |
| 607 | { |
| 608 | return (x >= rxmin) && (x <= rxmax) && (y >= rymin) && (y <= rymax); |