| 19 | #endif |
| 20 | |
| 21 | static inline float mix(float a, float b, float factor) { return a * (1.0f - factor) + b * factor; } |
| 22 | |
| 23 | template <typename T> static inline T clamp(const T &v, const T &min, const T &max) |
| 24 | { |
no outgoing calls
no test coverage detected