| 453 | u16 height() const FL_NOEXCEPT { return mMax.y - mMin.y; } |
| 454 | |
| 455 | bool empty() const FL_NOEXCEPT { return (mMin.x == mMax.x && mMin.y == mMax.y); } |
| 456 | |
| 457 | void expand(const vec2<T> &p) FL_NOEXCEPT { expand(p.x, p.y); } |
| 458 |
no outgoing calls
no test coverage detected