Рефакторинг 4

This commit is contained in:
2020-04-22 20:24:13 +03:00
parent 352bf756bd
commit d6143953f6
21 changed files with 322 additions and 276 deletions

View File

@ -1,6 +1,8 @@
#ifndef MYX_MATH_CONSTANTS_HPP_
#define MYX_MATH_CONSTANTS_HPP_
#include <myx/base/config.hpp>
#include <cmath>
#include <type_traits>
@ -8,11 +10,14 @@ namespace myx {
namespace math {
const auto ImpedanceOfFreeSpace = 376.7303136675757;
const auto ImpedanceOfFreeSpace = (M_PI * 119.9169832);
} // namespace math
} // namespace myx
#ifdef MYXLIB_HEADER_ONLY
#include "constants-inl.hpp"
#endif
#endif // MYX_MATH_CONSTANTS_HPP_