Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #pragma once
00041
00042
00043 #include "../glm.hpp"
00044 #include "../gtc/epsilon.hpp"
00045 #include "../gtx/quaternion.hpp"
00046 #include "../gtx/rotate_vector.hpp"
00047
00048 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
00049 # pragma message("GLM: GLM_GTX_vector_angle extension included")
00050 #endif
00051
00052 namespace glm
00053 {
00056
00060 template <typename vecType>
00061 GLM_FUNC_DECL typename vecType::value_type angle(
00062 vecType const & x,
00063 vecType const & y);
00064
00068 template <typename T, precision P>
00069 GLM_FUNC_DECL T orientedAngle(
00070 detail::tvec2<T, P> const & x,
00071 detail::tvec2<T, P> const & y);
00072
00076 template <typename T, precision P>
00077 GLM_FUNC_DECL T orientedAngle(
00078 detail::tvec3<T, P> const & x,
00079 detail::tvec3<T, P> const & y,
00080 detail::tvec3<T, P> const & ref);
00081
00083 }
00084
00085 #include "vector_angle.inl"