Rounds both components up
| 688 | |
| 689 | // Rounds both components up |
| 690 | inline constexpr v_2d ceil() const |
| 691 | { |
| 692 | return v_2d(std::ceil(x), std::ceil(y)); |
| 693 | } |
| 694 | |
| 695 | // Returns 'element-wise' max of this and another vector |
| 696 | inline constexpr v_2d max(const v_2d& v) const |
no test coverage detected