Helper function for rand implementations. Top border A random number in [0..A)
| 157 | /// <param name="a">Top border</param> |
| 158 | /// <returns>A random number in [0..A)</returns> |
| 159 | FORCE_INLINE int32 RandHelper(int32 a) const |
| 160 | { |
| 161 | return a > 0 ? Math::TruncToInt(GetFraction() * ((float)a - ZeroTolerance)) : 0; |
| 162 | } |
| 163 | |
| 164 | /// <summary> |
| 165 | /// Helper function for rand implementations |
no test coverage detected