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

28 lines
602 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);
2014-03-18 20:17:41 +00:00
virtual ~CloudModelCirrus();
virtual void update() override;
virtual void getAltitudeRange(double *min_altitude, double *max_altitude) const override;
2016-02-01 19:38:29 +00:00
virtual double getDensity(const Vector3 &location, double precision) const override;
2014-03-18 20:17:41 +00:00
private:
NoiseGenerator *noise;
2014-03-18 20:17:41 +00:00
};
}
}
#endif // CLOUDMODELCIRRUS_H