| 42 | #endif |
| 43 | |
| 44 | AirAbsorptionModel::AirAbsorptionModel() |
| 45 | : callback(nullptr) |
| 46 | , userData(nullptr) |
| 47 | { |
| 48 | for (auto i = 0; i < Bands::kNumBands; ++i) |
| 49 | { |
| 50 | coefficients[i] = kDefaultCoefficients[i]; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | AirAbsorptionModel::AirAbsorptionModel(const float* coefficients, |
| 55 | AirAbsorptionCallback callback, |
nothing calls this directly
no outgoing calls
no test coverage detected