| 651 | olc::v_2d<T> size; |
| 652 | |
| 653 | inline rect(const olc::v_2d<T>& p = { T(0), T(0) }, |
| 654 | const olc::v_2d<T>& s = { T(1), T(1) }) |
| 655 | : pos(p), size(s) |
| 656 | { } |
| 657 | |
| 658 | inline olc::v_2d<T> middle() const |
| 659 | { |
nothing calls this directly
no outgoing calls
no test coverage detected