Returns a random float value between 0 and 1
| 577 | |
| 578 | // Returns a random float value between 0 and 1 |
| 579 | inline float RandFloat() |
| 580 | { |
| 581 | return rand() / static_cast<float>(RAND_MAX); |
| 582 | } |
| 583 | |
| 584 | // Returns x * x |
| 585 | template<typename T> T Square(T x) |
nothing calls this directly
no outgoing calls
no test coverage detected