2016-01-25 02:42:35 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2016-01-25 02:42:35 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the sprout Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.sprout.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
|
|
|
#ifndef SPROUT_MATH_QUATERNION_HPP
|
|
|
|
#define SPROUT_MATH_QUATERNION_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2016-02-26 14:19:42 +00:00
|
|
|
#include <sprout/math/quaternion/quaternion.hpp>
|
2016-02-26 16:21:46 +00:00
|
|
|
#include <sprout/math/quaternion/operators.hpp>
|
|
|
|
#include <sprout/math/quaternion/values.hpp>
|
|
|
|
#include <sprout/math/quaternion/creations.hpp>
|
|
|
|
#include <sprout/math/quaternion/transcendentals.hpp>
|
|
|
|
#include <sprout/math/quaternion/hash.hpp>
|
|
|
|
#include <sprout/math/quaternion/tuple.hpp>
|
2016-02-26 14:19:42 +00:00
|
|
|
#include <sprout/math/quaternion/container.hpp>
|
2016-02-26 16:21:46 +00:00
|
|
|
#include <sprout/math/quaternion/udl.hpp>
|
|
|
|
#include <sprout/math/quaternion/type_traits.hpp>
|
2016-01-25 02:42:35 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_QUATERNION_HPP
|