| 217 | } |
| 218 | |
| 219 | void Rect::scale(const UnitVector& size, const Referential& ref) |
| 220 | { |
| 221 | const UnitVector savePosition = this->getPosition(ref); |
| 222 | m_size *= size; |
| 223 | this->setPosition(savePosition, ref); |
| 224 | } |
| 225 | |
| 226 | UnitVector Rect::getSize() const |
| 227 | { |
nothing calls this directly
no test coverage detected