| 359 | /// returns size along y axis |
| 360 | template <typename V> |
| 361 | inline auto height( const Box<V>& box ) |
| 362 | { |
| 363 | return box.max.y - box.min.y; |
| 364 | } |
| 365 | |
| 366 | /// returns size along z axis |
| 367 | template <typename V> |
no outgoing calls
no test coverage detected