mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
28 lines
1 KiB
C++
28 lines
1 KiB
C++
#ifndef SPROUT_COMPOST_UTILITY_EQUAL_TEMPERAMENT_HPP
|
|
#define SPROUT_COMPOST_UTILITY_EQUAL_TEMPERAMENT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/pow.hpp>
|
|
#include <sprout/type_traits/float_promote.hpp>
|
|
|
|
namespace sprout {
|
|
namespace compost {
|
|
//
|
|
// equal_temperament_value
|
|
//
|
|
template<typename ArithmeticType1, typename ArithmeticType2>
|
|
SPROUT_CONSTEXPR typename sprout::float_promote<ArithmeticType1, ArithmeticType2>::type
|
|
equal_temperament_value(ArithmeticType1 i, ArithmeticType2 div) {
|
|
typedef typename sprout::float_promote<ArithmeticType1, ArithmeticType2>::type type;
|
|
using sprout::pow;
|
|
return pow(type(2), type(i) / type(div));
|
|
}
|
|
template<typename ArithmeticType>
|
|
SPROUT_CONSTEXPR typename sprout::float_promote<ArithmeticType, int>::type
|
|
equal_temperament_value(ArithmeticType i) {
|
|
return sprout::compost::equal_temperament_value(i, 12);
|
|
}
|
|
} // namespace compost
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_COMPOST_UTILITY_EQUAL_TEMPERAMENT_HPP
|