| 2128 | } |
| 2129 | |
| 2130 | bool EpwDataPoint::setDirectNormalIlluminance(double value) { |
| 2131 | if (0 > value || 999900 < value) { |
| 2132 | m_directNormalIlluminance = "999999"; |
| 2133 | return false; |
| 2134 | } |
| 2135 | m_directNormalIlluminance = std::to_string(value); |
| 2136 | return true; |
| 2137 | } |
| 2138 | |
| 2139 | bool EpwDataPoint::setDirectNormalIlluminance(const std::string& directNormalIlluminance) { |
| 2140 | bool ok; |
no test coverage detected