mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
13 lines
390 B
C++
13 lines
390 B
C++
#ifndef SPROUT_MATH_TRIGONOMETRIC_HPP
|
|
#define SPROUT_MATH_TRIGONOMETRIC_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/sin.hpp>
|
|
#include <sprout/math/cos.hpp>
|
|
#include <sprout/math/tan.hpp>
|
|
#include <sprout/math/asin.hpp>
|
|
#include <sprout/math/acos.hpp>
|
|
#include <sprout/math/atan.hpp>
|
|
#include <sprout/math/atan2.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_TRIGONOMETRIC_HPP
|