--------------------------------------------------------------------------------
| 29 | |
| 30 | // -------------------------------------------------------------------------------- |
| 31 | float RandomConstant( const Tr2CurveScalarExpression* curve, float a, float b ) |
| 32 | { |
| 33 | return ( ( b - a ) * curve->GetRandomConstant() ) + a; |
| 34 | } |
| 35 | |
| 36 | float RandomHash( const Tr2CurveScalarExpression* curve, float a, float b, float x ) |
| 37 | { |
nothing calls this directly
no test coverage detected