paysages3d/src/render/software/clouds/CloudModelCirrus.h

30 lines
581 B
C
Raw Normal View History

2014-03-18 20:17:41 +00:00
#ifndef CLOUDMODELCIRRUS_H
#define CLOUDMODELCIRRUS_H
#include "../software_global.h"
#include "BaseCloudsModel.h"
namespace paysages {
namespace software {
class CloudModelCirrus : public BaseCloudsModel
{
public:
CloudModelCirrus(CloudLayerDefinition* layer);
virtual ~CloudModelCirrus();
virtual void update() override;
virtual void getAltitudeRange(double *min_altitude, double *max_altitude) const override;
virtual double getDensity(const Vector3 &location) const override;
private:
NoiseGenerator* noise;
};
}
}
#endif // CLOUDMODELCIRRUS_H