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