| 519 | /************************************** reflect box implementation ********************************/ |
| 520 | |
| 521 | ReflectBox::ReflectBox(const sptr<Box>& b) { |
| 522 | _box = b; |
| 523 | _width = b->_width; |
| 524 | _height = b->_height; |
| 525 | _depth = b->_depth; |
| 526 | _shift = b->_shift; |
| 527 | } |
| 528 | |
| 529 | void ReflectBox::draw(Graphics2D& g2, float x, float y) { |
| 530 | drawDebug(g2, x, y); |
nothing calls this directly
no outgoing calls
no test coverage detected