mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_MATH_QUATERNION_DETAIL_SUM_HPP
|
|
#define SPROUT_MATH_QUATERNION_DETAIL_SUM_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
|
#include <sprout/array/array.hpp>
|
|
#include <sprout/math/abs.hpp>
|
|
#include <sprout/range/numeric/accumulate.hpp>
|
|
|
|
namespace sprout {
|
|
namespace math {
|
|
namespace detail {
|
|
template<typename T>
|
|
class abs_plus {
|
|
public:
|
|
SPROUT_CONSTEXPR T
|
|
operator()(T const& lhs, T const& rhs) const {
|
|
return sprout::math::abs(lhs) + sprout::math::abs(rhs);
|
|
}
|
|
};
|
|
|
|
template<typename T, std::size_t N>
|
|
SPROUT_CONSTEXPR T
|
|
sum(sprout::array<T, N> const& c) {
|
|
return sprout::range::accumulate(c, static_cast<T>(0));
|
|
}
|
|
template<typename T, std::size_t N>
|
|
SPROUT_CONSTEXPR T
|
|
abs_sum(sprout::array<T, N> const& c) {
|
|
return sprout::range::accumulate(c, static_cast<T>(0), sprout::math::detail::abs_plus<T>());
|
|
}
|
|
} // namespace detail
|
|
} // namespace math
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_MATH_QUATERNION_DETAIL_SUM_HPP
|