| 20 | namespace |
| 21 | { |
| 22 | inline float Clamp(float x, float minX, float maxX) |
| 23 | { |
| 24 | if (x < minX) |
| 25 | return minX; |
| 26 | if (x > maxX) |
| 27 | return maxX; |
| 28 | return x; |
| 29 | } |
| 30 | |
| 31 | inline float InvSqrtFast(float x) |
| 32 | { |
no outgoing calls
no test coverage detected