--------------------------------------------------------------------------------
| 19 | |
| 20 | // -------------------------------------------------------------------------------- |
| 21 | float Noise( const Tr2CurveEulerRotationExpression* curve, float x ) |
| 22 | { |
| 23 | return float( ( PerlinNoise1D( x + curve->GetRandomConstant(), 1.0, 1.0, 1 ) + 1.0 ) / 2.0 ); |
| 24 | } |
| 25 | |
| 26 | // -------------------------------------------------------------------------------- |
| 27 | float RandomConstant( const Tr2CurveEulerRotationExpression* curve, float a, float b ) |
nothing calls this directly
no test coverage detected