mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-02-23 10:54:54 +00:00
16 lines
491 B
C++
16 lines
491 B
C++
#ifndef SPROUT_MATH_OPERATIONS_HPP
|
|
#define SPROUT_MATH_OPERATIONS_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/abs.hpp>
|
|
#include <sprout/math/fabs.hpp>
|
|
#include <sprout/math/fma.hpp>
|
|
#include <sprout/math/fmax.hpp>
|
|
#include <sprout/math/fmin.hpp>
|
|
#include <sprout/math/fdim.hpp>
|
|
#include <sprout/math/fmod.hpp>
|
|
#include <sprout/math/reminder.hpp>
|
|
#include <sprout/math/quotient.hpp>
|
|
#include <sprout/math/rem_quo.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_OPERATIONS_HPP
|