mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
12 lines
349 B
C++
12 lines
349 B
C++
#ifndef SPROUT_MATH_NEAREST_HPP
|
|
#define SPROUT_MATH_NEAREST_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/ceil.hpp>
|
|
#include <sprout/math/floor.hpp>
|
|
#include <sprout/math/trunc.hpp>
|
|
#include <sprout/math/round.hpp>
|
|
#include <sprout/math/lround.hpp>
|
|
#include <sprout/math/llround.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_NEAREST_HPP
|