mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
23 lines
1 KiB
C++
23 lines
1 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
|
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>
|
|
#include <sprout/math/quaternion/quaternion.hpp>
|
|
#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>
|
|
#include <sprout/math/quaternion/container.hpp>
|
|
#include <sprout/math/quaternion/udl.hpp>
|
|
#include <sprout/math/quaternion/type_traits.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_QUATERNION_HPP
|