$$QUERY Math f:Random value between [f:LowerLimit] and [f:UpperLimit] qRandomValue Random Value Returns a random value between the two specified values Parameters: LowerLimit: the returned value will be higher than or equal to this value UpperLimit: the returned value will be lower than or equal to this value $$END */
| 6142 | $$END |
| 6143 | */ |
| 6144 | float qRandomValue(float low, float high) { return low + (static_cast<float>(rand()) / static_cast<float>(RAND_MAX)) * (high - low); } |
| 6145 | |
| 6146 | /* |
| 6147 | $$QUERY |
no outgoing calls
no test coverage detected