2016-07-12 17:40:45 +00:00
|
|
|
#pragma once
|
2013-12-08 17:36:39 +00:00
|
|
|
|
2020-03-24 22:03:54 +00:00
|
|
|
#include "core_global.h"
|
2013-12-08 17:36:39 +00:00
|
|
|
|
|
|
|
#include "Color.h"
|
|
|
|
|
|
|
|
namespace paysages {
|
|
|
|
namespace software {
|
|
|
|
|
2020-03-24 22:03:54 +00:00
|
|
|
class CORESHARED_EXPORT AtmosphereResult {
|
2015-11-09 21:30:46 +00:00
|
|
|
public:
|
2013-12-08 17:36:39 +00:00
|
|
|
AtmosphereResult();
|
|
|
|
void updateFinal();
|
|
|
|
|
|
|
|
Color base;
|
|
|
|
double distance;
|
|
|
|
Color inscattering;
|
|
|
|
Color attenuation;
|
|
|
|
Color mask;
|
|
|
|
Color final;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|