| 78 | |
| 79 | template <typename T, typename... TL> |
| 80 | float staticRandomFloatRange(float min, float max, T const& d, TL const&... rest) { |
| 81 | return staticRandomFloat(d, rest...) * (max - min) + min; |
| 82 | } |
| 83 | |
| 84 | // Generates values in the range [0.0, 1.0] |
| 85 | template <typename T, typename... TL> |
no test coverage detected