| 588 | } |
| 589 | |
| 590 | const char* |
| 591 | Bitmap::getBitmapAt(int x, |
| 592 | int y) const |
| 593 | { |
| 594 | if ( ( x >= _bounds.left() ) && ( x < _bounds.right() ) && ( y >= _bounds.bottom() ) && ( y < _bounds.top() ) ) { |
| 595 | return BM_GET(y, x); |
| 596 | } else { |
| 597 | return NULL; |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | char* |
| 602 | Bitmap::getBitmapAt(int x, |
no test coverage detected