| 32 | }; |
| 33 | |
| 34 | class PerlinNoise |
| 35 | { |
| 36 | private: |
| 37 | float base[IMGW][IMGH]; |
| 38 | float perlin[IMGW][IMGH]; |
| 39 | public: |
| 40 | PerlinNoise(); |
| 41 | float noise(float u, float v); |
| 42 | }; |
| 43 | |
| 44 | Bitmap createBitmap(unsigned w, unsigned h); |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected