mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
12 lines
348 B
C++
12 lines
348 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>
|
|
|
|
#endif // #ifndef SPROUT_MATH_OPERATIONS_HPP
|