Начало добавления математических функций

This commit is contained in:
2019-10-23 19:44:45 +03:00
parent 821bd88cee
commit 19aff9eb16
8 changed files with 247 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#ifndef MYX_MATH_CONSTANTS_HPP_
#define MYX_MATH_CONSTANTS_HPP_
#include <type_traits>
#include <cmath>
namespace myx {
namespace math {
const auto ImpedanceOfFreeSpace = 376.7303136675757;
} // namespace math
} // namespace myx
#endif // MYX_MATH_CONSTANTS_HPP_