Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef FONCTION_TRANSFERT_HPP
00020 #define FONCTION_TRANSFERT_HPP
00021
00022 namespace cpe
00023 {
00024
00025 class fonction_transfert
00026 {
00027 public:
00028
00029 fonction_transfert();
00030 fonction_transfert(const float& dL);
00031
00032 float attenuation_r(const float& value);
00033 float attenuation_g(const float& value);
00034 float attenuation_b(const float& value);
00035
00036 float emission_r(const float& value);
00037 float emission_g(const float& value);
00038 float emission_b(const float& value);
00039
00040 private:
00041
00042 double dL;
00043 };
00044
00045 }
00046
00047 #endif