19 lines
294 B
C++
19 lines
294 B
C++
#ifndef CG1_TRACER_CLOUDNOISE_H
|
|
#define CG1_TRACER_CLOUDNOISE_H
|
|
|
|
|
|
#include "noise.h"
|
|
|
|
class CloudNoise : public Noise
|
|
{
|
|
public:
|
|
/**
|
|
*
|
|
* @param size
|
|
* @param seed 0 for random seed
|
|
*/
|
|
CloudNoise(int size, unsigned int seed = 0);
|
|
};
|
|
|
|
|
|
#endif //CG1_TRACER_CLOUDNOISE_H
|