mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
13 lines
368 B
C++
13 lines
368 B
C++
#ifndef SPROUT_MATH_POWER_HPP
|
|
#define SPROUT_MATH_POWER_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/cbrt.hpp>
|
|
#include <sprout/math/fabs.hpp>
|
|
#include <sprout/math/abs.hpp>
|
|
#include <sprout/math/hypot.hpp>
|
|
#include <sprout/math/pow.hpp>
|
|
#include <sprout/math/sqrt.hpp>
|
|
#include <sprout/math/log_a.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_POWER_HPP
|