Sprout/sprout/complex/nearest.hpp

42 lines
1.5 KiB
C++
Raw Normal View History

2013-08-08 18:54:33 +09:00
/*=============================================================================
Copyright (c) 2011-2013 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)
=============================================================================*/
2012-08-29 01:16:12 +09:00
#ifndef SPROUT_COMPLEX_NEAREST_HPP
#define SPROUT_COMPLEX_NEAREST_HPP
#include <sprout/config.hpp>
#include <sprout/complex/complex.hpp>
#include <sprout/math/ceil.hpp>
#include <sprout/math/floor.hpp>
#include <sprout/math/trunc.hpp>
#include <sprout/math/round.hpp>
namespace sprout {
template<typename T>
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR sprout::complex<T>
ceil(sprout::complex<T> const& x) {
2013-05-06 23:57:38 +09:00
return sprout::complex<T>(sprout::math::ceil(x.real()), sprout::math::ceil(x.imag()));
2012-08-29 01:16:12 +09:00
}
template<typename T>
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR sprout::complex<T>
floor(sprout::complex<T> const& x) {
2013-05-06 23:57:38 +09:00
return sprout::complex<T>(sprout::math::floor(x.real()), sprout::math::floor(x.imag()));
2012-08-29 01:16:12 +09:00
}
template<typename T>
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR sprout::complex<T>
trunc(sprout::complex<T> const& x) {
2013-04-25 15:36:19 +09:00
return sprout::complex<T>(sprout::math::trunc(x.real()), sprout::math::trunc(x.imag()));
2012-08-29 01:16:12 +09:00
}
template<typename T>
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR sprout::complex<T>
round(sprout::complex<T> const& x) {
2013-05-06 23:57:38 +09:00
return sprout::complex<T>(sprout::math::round(x.real()), sprout::math::round(x.imag()));
2012-08-29 01:16:12 +09:00
}
} // namespace sprout
#endif // #ifndef SPROUT_COMPLEX_NEAREST_HPP