| 38 | float RandomValue(int x, int z) const { return RandomValue(GetSeed(x, z)); } |
| 39 | float RandomValue(int x, int z, int y) const { return RandomValue(GetSeed(x, z, y)); } |
| 40 | void SetSeed(int seed) { _seed = seed; } |
| 41 | float RandomValue() const; |
| 42 | float Gauss(float min, float mid, float max) const; |
| 43 | float PlusMinus(float a, float b) const; |
no outgoing calls
no test coverage detected