max(a, b, c)
| 18 | } |
| 19 | // max(a, b, c) |
| 20 | inline f32 max3(f32 a, f32 b, f32 c) |
| 21 | { |
| 22 | return std::max(a, std::max(b, c)); |
| 23 | } |
| 24 | // Return true if the 1D intervals [a0, a1] and [b0, b1] overlap. |
| 25 | inline bool intervalOverlap(f32 a0, f32 a1, f32 b0, f32 b1) |
| 26 | { |
no test coverage detected