diff --git a/doc/api/a00004_source.html b/doc/api/a00004_source.html index dbbb7273..ac4213a6 100644 --- a/doc/api/a00004_source.html +++ b/doc/api/a00004_source.html @@ -167,7 +167,7 @@
120  _swizzle_base2& operator= (const VecType& that)
121  {
122  struct op {
-
123  void operator() (value_type& e, value_type& t) { e = t; }
+
123  void operator() (value_type& e, value_type& t) { e = t; }
124  };
125  _apply_op(that, op());
126  return *this;
@@ -176,7 +176,7 @@
129  void operator -= (const VecType& that)
130  {
131  struct op {
-
132  void operator() (value_type& e, value_type& t) { e -= t; }
+
132  void operator() (value_type& e, value_type& t) { e -= t; }
133  };
134  _apply_op(that, op());
135  }
@@ -184,7 +184,7 @@
137  void operator += (const VecType& that)
138  {
139  struct op {
-
140  void operator() (value_type& e, value_type& t) { e += t; }
+
140  void operator() (value_type& e, value_type& t) { e += t; }
141  };
142  _apply_op(that, op());
143  }
@@ -192,7 +192,7 @@
145  void operator *= (const VecType& that)
146  {
147  struct op {
-
148  void operator() (value_type& e, value_type& t) { e *= t; }
+
148  void operator() (value_type& e, value_type& t) { e *= t; }
149  };
150  _apply_op(that, op());
151  }
@@ -200,7 +200,7 @@
153  void operator /= (const VecType& that)
154  {
155  struct op {
-
156  void operator() (value_type& e, value_type& t) { e /= t; }
+
156  void operator() (value_type& e, value_type& t) { e /= t; }
157  };
158  _apply_op(that, op());
159  }
diff --git a/doc/api/a00013.html b/doc/api/a00013.html index 97d6ced0..1054a4b8 100644 --- a/doc/api/a00013.html +++ b/doc/api/a00013.html @@ -366,10 +366,9 @@ template<typename T > GLM_FUNC_QUALIFIER
detail::tvec4< T > saturate (const detail::tvec4< T > &x)   - -template<typename T > -GLM_FUNC_QUALIFIER T slerp (detail::tquat< T > const &x, detail::tquat< T > const &y, T const &a) -  +template<typename T > +detail::tquat< T > slerp (detail::tquat< T > const &x, detail::tquat< T > const &y, T const &a) + 

Detailed Description

OpenGL Mathematics (glm.g-truc.net)

diff --git a/doc/api/a00013_source.html b/doc/api/a00013_source.html index 60e50bcc..fd2f72cf 100644 --- a/doc/api/a00013_source.html +++ b/doc/api/a00013_source.html @@ -107,15 +107,15 @@
60 namespace glm
61 {
64 
-
65  template <typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);}
-
66  template <typename T> GLM_FUNC_QUALIFIER detail::tvec2<T> lerp(const detail::tvec2<T>& x, const detail::tvec2<T>& y, T a){return mix(x, y, a);}
-
67  template <typename T> GLM_FUNC_QUALIFIER detail::tvec3<T> lerp(const detail::tvec3<T>& x, const detail::tvec3<T>& y, T a){return mix(x, y, a);}
-
68  template <typename T> GLM_FUNC_QUALIFIER detail::tvec4<T> lerp(const detail::tvec4<T>& x, const detail::tvec4<T>& y, T a){return mix(x, y, a);}
-
69  template <typename T> GLM_FUNC_QUALIFIER detail::tvec2<T> lerp(const detail::tvec2<T>& x, const detail::tvec2<T>& y, const detail::tvec2<T>& a){return mix(x, y, a);}
-
70  template <typename T> GLM_FUNC_QUALIFIER detail::tvec3<T> lerp(const detail::tvec3<T>& x, const detail::tvec3<T>& y, const detail::tvec3<T>& a){return mix(x, y, a);}
-
71  template <typename T> GLM_FUNC_QUALIFIER detail::tvec4<T> lerp(const detail::tvec4<T>& x, const detail::tvec4<T>& y, const detail::tvec4<T>& a){return mix(x, y, a);}
+
65  template <typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);}
+
66  template <typename T> GLM_FUNC_QUALIFIER detail::tvec2<T> lerp(const detail::tvec2<T>& x, const detail::tvec2<T>& y, T a){return mix(x, y, a);}
+
67  template <typename T> GLM_FUNC_QUALIFIER detail::tvec3<T> lerp(const detail::tvec3<T>& x, const detail::tvec3<T>& y, T a){return mix(x, y, a);}
+
68  template <typename T> GLM_FUNC_QUALIFIER detail::tvec4<T> lerp(const detail::tvec4<T>& x, const detail::tvec4<T>& y, T a){return mix(x, y, a);}
+
69  template <typename T> GLM_FUNC_QUALIFIER detail::tvec2<T> lerp(const detail::tvec2<T>& x, const detail::tvec2<T>& y, const detail::tvec2<T>& a){return mix(x, y, a);}
+
70  template <typename T> GLM_FUNC_QUALIFIER detail::tvec3<T> lerp(const detail::tvec3<T>& x, const detail::tvec3<T>& y, const detail::tvec3<T>& a){return mix(x, y, a);}
+
71  template <typename T> GLM_FUNC_QUALIFIER detail::tvec4<T> lerp(const detail::tvec4<T>& x, const detail::tvec4<T>& y, const detail::tvec4<T>& a){return mix(x, y, a);}
72 
-
73  template <typename T> GLM_FUNC_QUALIFIER T slerp(detail::tquat<T> const & x, detail::tquat<T> const & y, T const & a){return mix(x, y, a);}
+
73  template <typename T> GLM_FUNC_QUALIFIER T slerp(detail::tquat<T> const & x, detail::tquat<T> const & y, T const & a){return mix(x, y, a);}
74 
75  template <typename T> GLM_FUNC_QUALIFIER T saturate(T x){return clamp(x, T(0), T(1));}
76  template <typename T> GLM_FUNC_QUALIFIER detail::tvec2<T> saturate(const detail::tvec2<T>& x){return clamp(x, T(0), T(1));}
diff --git a/doc/api/a00015.html b/doc/api/a00015.html index a2ad98e0..30145b17 100644 --- a/doc/api/a00015.html +++ b/doc/api/a00015.html @@ -52,81 +52,81 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Functions

template<typename T >
GLM_CONSTEXPR T e ()
 
template<typename T >
GLM_CONSTEXPR T epsilon ()
 
template<typename T >
GLM_CONSTEXPR T euler ()
 
template<typename T >
GLM_CONSTEXPR T golden_ratio ()
 
template<typename T >
GLM_CONSTEXPR T half_pi ()
 
template<typename T >
GLM_CONSTEXPR T ln_ln_two ()
 
template<typename T >
GLM_CONSTEXPR T ln_ten ()
 
template<typename T >
GLM_CONSTEXPR T ln_two ()
 
template<typename T >
GLM_CONSTEXPR T one ()
 
template<typename T >
GLM_CONSTEXPR T one_over_pi ()
 
template<typename T >
GLM_CONSTEXPR T one_over_root_two ()
 
template<typename T >
GLM_CONSTEXPR T pi ()
 
template<typename T >
GLM_CONSTEXPR T quarter_pi ()
 
template<typename T >
GLM_CONSTEXPR T root_five ()
 
template<typename T >
GLM_CONSTEXPR T root_half_pi ()
 
template<typename T >
GLM_CONSTEXPR T root_ln_four ()
 
template<typename T >
GLM_CONSTEXPR T root_pi ()
 
template<typename T >
GLM_CONSTEXPR T root_three ()
 
template<typename T >
GLM_CONSTEXPR T root_two ()
 
template<typename T >
GLM_CONSTEXPR T root_two_pi ()
 
template<typename T >
GLM_CONSTEXPR T third ()
 
template<typename T >
GLM_CONSTEXPR T two_over_pi ()
 
template<typename T >
GLM_CONSTEXPR T two_over_root_pi ()
 
template<typename T >
GLM_CONSTEXPR T two_thirds ()
 
template<typename T >
GLM_CONSTEXPR T zero ()
 
template<typename genType >
genType e ()
 
template<typename genType >
genType epsilon ()
 
template<typename genType >
genType euler ()
 
template<typename genType >
genType golden_ratio ()
 
template<typename genType >
genType half_pi ()
 
template<typename genType >
genType ln_ln_two ()
 
template<typename genType >
genType ln_ten ()
 
template<typename genType >
genType ln_two ()
 
template<typename genType >
genType one ()
 
template<typename genType >
genType one_over_pi ()
 
template<typename genType >
genType one_over_root_two ()
 
template<typename genType >
genType pi ()
 
template<typename genType >
genType quarter_pi ()
 
template<typename genType >
genType root_five ()
 
template<typename genType >
genType root_half_pi ()
 
template<typename genType >
genType root_ln_four ()
 
template<typename genType >
genType root_pi ()
 
template<typename genType >
genType root_three ()
 
template<typename genType >
genType root_two ()
 
template<typename genType >
genType root_two_pi ()
 
template<typename genType >
genType third ()
 
template<typename genType >
genType two_over_pi ()
 
template<typename genType >
genType two_over_root_pi ()
 
template<typename genType >
genType two_thirds ()
 
template<typename genType >
genType zero ()
 

Detailed Description

OpenGL Mathematics (glm.g-truc.net)

diff --git a/doc/api/a00015_source.html b/doc/api/a00015_source.html index baedf1ca..0934f8e6 100644 --- a/doc/api/a00015_source.html +++ b/doc/api/a00015_source.html @@ -97,80 +97,80 @@
50 namespace glm
51 {
54 
-
58  template <typename T>
-
59  GLM_CONSTEXPR T epsilon();
+
58  template <typename genType>
+
59  genType epsilon();
60 
-
63  template <typename T>
-
64  GLM_CONSTEXPR T zero();
+
63  template <typename genType>
+
64  genType zero();
65 
-
68  template <typename T>
-
69  GLM_CONSTEXPR T one();
+
68  template <typename genType>
+
69  genType one();
70 
-
73  template <typename T>
-
74  GLM_CONSTEXPR T pi();
+
73  template <typename genType>
+
74  genType pi();
75 
-
78  template <typename T>
-
79  GLM_CONSTEXPR T root_pi();
+
78  template <typename genType>
+
79  genType root_pi();
80 
-
83  template <typename T>
-
84  GLM_CONSTEXPR T half_pi();
+
83  template <typename genType>
+
84  genType half_pi();
85 
-
88  template <typename T>
-
89  GLM_CONSTEXPR T quarter_pi();
+
88  template <typename genType>
+
89  genType quarter_pi();
90 
-
93  template <typename T>
-
94  GLM_CONSTEXPR T one_over_pi();
+
93  template <typename genType>
+
94  genType one_over_pi();
95 
-
98  template <typename T>
-
99  GLM_CONSTEXPR T two_over_pi();
+
98  template <typename genType>
+
99  genType two_over_pi();
100 
-
103  template <typename T>
-
104  GLM_CONSTEXPR T two_over_root_pi();
+
103  template <typename genType>
+
104  genType two_over_root_pi();
105 
-
108  template <typename T>
-
109  GLM_CONSTEXPR T one_over_root_two();
+
108  template <typename genType>
+
109  genType one_over_root_two();
110 
-
113  template <typename T>
-
114  GLM_CONSTEXPR T root_half_pi();
+
113  template <typename genType>
+
114  genType root_half_pi();
115 
-
118  template <typename T>
-
119  GLM_CONSTEXPR T root_two_pi();
+
118  template <typename genType>
+
119  genType root_two_pi();
120 
-
123  template <typename T>
-
124  GLM_CONSTEXPR T root_ln_four();
+
123  template <typename genType>
+
124  genType root_ln_four();
125 
-
128  template <typename T>
-
129  GLM_CONSTEXPR T e();
+
128  template <typename genType>
+
129  genType e();
130 
-
133  template <typename T>
-
134  GLM_CONSTEXPR T euler();
+
133  template <typename genType>
+
134  genType euler();
135 
-
138  template <typename T>
-
139  GLM_CONSTEXPR T root_two();
+
138  template <typename genType>
+
139  genType root_two();
140 
-
143  template <typename T>
-
144  GLM_CONSTEXPR T root_three();
+
143  template <typename genType>
+
144  genType root_three();
145 
-
148  template <typename T>
-
149  GLM_CONSTEXPR T root_five();
+
148  template <typename genType>
+
149  genType root_five();
150 
-
153  template <typename T>
-
154  GLM_CONSTEXPR T ln_two();
+
153  template <typename genType>
+
154  genType ln_two();
155 
-
158  template <typename T>
-
159  GLM_CONSTEXPR T ln_ten();
+
158  template <typename genType>
+
159  genType ln_ten();
160 
-
163  template <typename T>
-
164  GLM_CONSTEXPR T ln_ln_two();
+
163  template <typename genType>
+
164  genType ln_ln_two();
165 
-
168  template <typename T>
-
169  GLM_CONSTEXPR T third();
+
168  template <typename genType>
+
169  genType third();
170 
-
173  template <typename T>
-
174  GLM_CONSTEXPR T two_thirds();
+
173  template <typename genType>
+
174  genType two_thirds();
175 
-
178  template <typename T>
-
179  GLM_CONSTEXPR T golden_ratio();
+
178  template <typename genType>
+
179  genType golden_ratio();
180 
182 } //namespace glm
183 
diff --git a/doc/api/a00017_source.html b/doc/api/a00017_source.html index e625d199..f1558625 100644 --- a/doc/api/a00017_source.html +++ b/doc/api/a00017_source.html @@ -100,28 +100,28 @@
53 {
56 
59  template <typename genType>
-
60  typename genType::boolType epsilonEqual(
-
61  genType const & x,
-
62  genType const & y,
-
63  typename genType::value_type const & epsilon);
-
64 
+
60  typename genType::boolType epsilonEqual(
+
61  genType const & x,
+
62  genType const & y,
+
63  typename genType::value_type const & epsilon);
+
64 
67  template <typename genType>
68  typename genType::boolType epsilonEqual(
69  genType const & x,
70  genType const & y,
-
71  genType const & epsilon);
+
71  genType const & epsilon);
72 
75  template <typename genType>
-
76  typename genType::boolType epsilonNotEqual(
-
77  genType const & x,
-
78  genType const & y,
-
79  typename genType::value_type const & epsilon);
-
80 
+
76  typename genType::boolType epsilonNotEqual(
+
77  genType const & x,
+
78  genType const & y,
+
79  typename genType::value_type const & epsilon);
+
80 
83  template <typename genType>
84  typename genType::boolType epsilonNotEqual(
85  genType const & x,
86  genType const & y,
-
87  genType const & epsilon);
+
87  genType const & epsilon);
88 
90 }//namespace glm
91 
diff --git a/doc/api/a00019_source.html b/doc/api/a00019_source.html index e8cc9cd3..187b12cc 100644 --- a/doc/api/a00019_source.html +++ b/doc/api/a00019_source.html @@ -141,15 +141,15 @@
114 
117  template <typename valType>
118  detail::tmat4x4<valType> eulerAngleYXZ(
-
119  valType const & yaw,
-
120  valType const & pitch,
-
121  valType const & roll);
+
119  valType const & yaw,
+
120  valType const & pitch,
+
121  valType const & roll);
122 
125  template <typename valType>
126  detail::tmat4x4<valType> yawPitchRoll(
-
127  valType const & yaw,
-
128  valType const & pitch,
-
129  valType const & roll);
+
127  valType const & yaw,
+
128  valType const & pitch,
+
129  valType const & roll);
130 
133  template <typename T>
134  detail::tmat2x2<T> orientate2(T const & angle);
diff --git a/doc/api/a00052_source.html b/doc/api/a00052_source.html index 3b5cf10d..471989b6 100644 --- a/doc/api/a00052_source.html +++ b/doc/api/a00052_source.html @@ -99,7 +99,7 @@
56  genType const & m,
57  int index);
58 
-
61  template <typename genType>
+
61  template <typename genType>
62  genType row(
63  genType const & m,
64  int index,
diff --git a/doc/api/a00059_source.html b/doc/api/a00059_source.html index 0338718a..59145ede 100644 --- a/doc/api/a00059_source.html +++ b/doc/api/a00059_source.html @@ -101,42 +101,42 @@
58  template<typename T>
59  bool isNull(
60  detail::tmat2x2<T> const & m,
-
61  T const & epsilon/* = std::numeric_limits<T>::epsilon()*/);
+
61  T const & epsilon/* = std::numeric_limits<T>::epsilon()*/);
62 
65  template<typename T>
66  bool isNull(
67  detail::tmat3x3<T> const & m,
-
68  T const & epsilon/* = std::numeric_limits<T>::epsilon()*/);
+
68  T const & epsilon/* = std::numeric_limits<T>::epsilon()*/);
69 
72  template<typename T>
73  bool isNull(
74  detail::tmat4x4<T> const & m,
-
75  T const & epsilon/* = std::numeric_limits<T>::epsilon()*/);
+
75  T const & epsilon/* = std::numeric_limits<T>::epsilon()*/);
76 
79  template<typename genType>
80  bool isIdentity(
81  genType const & m,
-
82  typename genType::value_type const & epsilon/* = std::numeric_limits<typename genType::value_type>::epsilon()*/);
+
82  typename genType::value_type const & epsilon/* = std::numeric_limits<typename genType::value_type>::epsilon()*/);
83 
86  template<typename valType>
87  bool isNormalized(
88  detail::tmat2x2<valType> const & m,
-
89  valType const & epsilon/* = std::numeric_limits<valType>::epsilon()*/);
+
89  valType const & epsilon/* = std::numeric_limits<valType>::epsilon()*/);
90 
93  template<typename valType>
94  bool isNormalized(
95  detail::tmat3x3<valType> const & m,
-
96  valType const & epsilon/* = std::numeric_limits<valType>::epsilon()*/);
+
96  valType const & epsilon/* = std::numeric_limits<valType>::epsilon()*/);
97 
100  template<typename valType>
101  bool isNormalized(
102  detail::tmat4x4<valType> const & m,
-
103  valType const & epsilon/* = std::numeric_limits<valType>::epsilon()*/);
+
103  valType const & epsilon/* = std::numeric_limits<valType>::epsilon()*/);
104 
107  template<typename valType, template <typename> class matType>
108  bool isOrthogonal(
109  matType<valType> const & m,
-
110  valType const & epsilon/* = std::numeric_limits<genType>::epsilon()*/);
+
110  valType const & epsilon/* = std::numeric_limits<genType>::epsilon()*/);
111 
113 }//namespace glm
114 
diff --git a/doc/api/a00076.html b/doc/api/a00076.html index 8243cecc..45041cad 100644 --- a/doc/api/a00076.html +++ b/doc/api/a00076.html @@ -100,6 +100,9 @@ Functions template<typename T > T length (detail::tquat< T > const &q)   +template<typename T > +detail::tquat< T > lerp (detail::tquat< T > const &x, detail::tquat< T > const &y, T const &a) +  template<typename T > detail::tmat3x3< T > mat3_cast (detail::tquat< T > const &x)   @@ -112,15 +115,27 @@ Functions template<typename T > detail::tquat< T > normalize (detail::tquat< T > const &q)   +template<typename valType > +valType pitch (detail::tquat< valType > const &x) +  template<typename T > detail::tquat< T > quat_cast (detail::tmat3x3< T > const &x)   template<typename T > detail::tquat< T > quat_cast (detail::tmat4x4< T > const &x)   +template<typename valType > +valType roll (detail::tquat< valType > const &x) +  template<typename T > detail::tquat< T > rotate (detail::tquat< T > const &q, typename detail::tquat< T >::value_type const &angle, detail::tvec3< T > const &axis)   +template<typename T > +detail::tquat< T > slerp (detail::tquat< T > const &x, detail::tquat< T > const &y, T const &a) +  +template<typename valType > +valType yaw (detail::tquat< valType > const &x) + 

Detailed Description

OpenGL Mathematics (glm.g-truc.net)

@@ -128,11 +143,13 @@ Functions

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

GLM_GTC_quaternion

-
Date
2009-05-21 / 2011-06-05
+
Date
2009-05-21 / 2012-12-20
Author
Christophe Riccio
See Also
GLM Core (dependence)
-GLM_GTC_half_float (dependence)
+GLM_GTC_half_float (dependence) +
+GLM_GTC_constants (dependence)

Definition in file gtc/quaternion.hpp.

diff --git a/doc/api/a00076_source.html b/doc/api/a00076_source.html index 38ea8e01..51964b92 100644 --- a/doc/api/a00076_source.html +++ b/doc/api/a00076_source.html @@ -83,206 +83,232 @@
36 
37 
38 
-
39 #ifndef GLM_GTC_quaternion
-
40 #define GLM_GTC_quaternion GLM_VERSION
-
41 
-
42 // Dependency:
-
43 #include "../glm.hpp"
-
44 #include "../gtc/half_float.hpp"
-
45 
-
46 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
-
47 # pragma message("GLM: GLM_GTC_quaternion extension included")
-
48 #endif
-
49 
-
50 namespace glm{
-
51 namespace detail
-
52 {
-
53  template <typename T>
-
54  struct tquat// : public genType<T, tquat>
-
55  {
-
56  enum ctor{null};
-
57 
-
58  typedef T value_type;
-
59  typedef std::size_t size_type;
-
60 
-
61  public:
-
62  value_type x, y, z, w;
-
63 
-
64  GLM_FUNC_DECL size_type length() const;
+
39 
+
40 #ifndef GLM_GTC_quaternion
+
41 #define GLM_GTC_quaternion GLM_VERSION
+
42 
+
43 // Dependency:
+
44 #include "../glm.hpp"
+
45 #include "../gtc/half_float.hpp"
+
46 #include "../gtc/constants.hpp"
+
47 
+
48 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
+
49 # pragma message("GLM: GLM_GTC_quaternion extension included")
+
50 #endif
+
51 
+
52 namespace glm{
+
53 namespace detail
+
54 {
+
55  template <typename T>
+
56  struct tquat// : public genType<T, tquat>
+
57  {
+
58  enum ctor{null};
+
59 
+
60  typedef T value_type;
+
61  typedef std::size_t size_type;
+
62 
+
63  public:
+
64  value_type x, y, z, w;
65 
-
66  // Constructors
-
67  tquat();
-
68  explicit tquat(
-
69  value_type const & s,
-
70  glm::detail::tvec3<T> const & v);
-
71  explicit tquat(
-
72  value_type const & w,
-
73  value_type const & x,
-
74  value_type const & y,
-
75  value_type const & z);
-
76 
-
77  // Convertions
+
66  GLM_FUNC_DECL size_type length() const;
+
67 
+
68  // Constructors
+
69  tquat();
+
70  explicit tquat(
+
71  value_type const & s,
+
72  glm::detail::tvec3<T> const & v);
+
73  explicit tquat(
+
74  value_type const & w,
+
75  value_type const & x,
+
76  value_type const & y,
+
77  value_type const & z);
78 
-
80  explicit tquat(
-
81  tvec3<T> const & eulerAngles);
+
79  // Convertions
+
80 
82  explicit tquat(
-
83  tmat3x3<T> const & m);
+
83  tvec3<T> const & eulerAngles);
84  explicit tquat(
-
85  tmat4x4<T> const & m);
-
86 
-
87  // Accesses
-
88  value_type & operator[](int i);
-
89  value_type const & operator[](int i) const;
-
90 
-
91  // Operators
-
92  tquat<T> & operator*=(value_type const & s);
-
93  tquat<T> & operator/=(value_type const & s);
-
94  };
-
95 
-
96  template <typename T>
-
97  detail::tquat<T> operator- (
-
98  detail::tquat<T> const & q);
-
99 
-
100  template <typename T>
-
101  detail::tquat<T> operator+ (
-
102  detail::tquat<T> const & q,
-
103  detail::tquat<T> const & p);
-
104 
-
105  template <typename T>
-
106  detail::tquat<T> operator* (
-
107  detail::tquat<T> const & q,
-
108  detail::tquat<T> const & p);
-
109 
-
110  template <typename T>
-
111  detail::tvec3<T> operator* (
-
112  detail::tquat<T> const & q,
-
113  detail::tvec3<T> const & v);
-
114 
-
115  template <typename T>
-
116  detail::tvec3<T> operator* (
-
117  detail::tvec3<T> const & v,
-
118  detail::tquat<T> const & q);
-
119 
-
120  template <typename T>
-
121  detail::tvec4<T> operator* (
-
122  detail::tquat<T> const & q,
-
123  detail::tvec4<T> const & v);
-
124 
-
125  template <typename T>
-
126  detail::tvec4<T> operator* (
-
127  detail::tvec4<T> const & v,
-
128  detail::tquat<T> const & q);
-
129 
-
130  template <typename T>
-
131  detail::tquat<T> operator* (
-
132  detail::tquat<T> const & q,
-
133  typename detail::tquat<T>::value_type const & s);
-
134 
-
135  template <typename T>
-
136  detail::tquat<T> operator* (
-
137  typename detail::tquat<T>::value_type const & s,
-
138  detail::tquat<T> const & q);
-
139 
-
140  template <typename T>
-
141  detail::tquat<T> operator/ (
-
142  detail::tquat<T> const & q,
-
143  typename detail::tquat<T>::value_type const & s);
-
144 
-
145 } //namespace detail
+
85  tmat3x3<T> const & m);
+
86  explicit tquat(
+
87  tmat4x4<T> const & m);
+
88 
+
89  // Accesses
+
90  value_type & operator[](int i);
+
91  value_type const & operator[](int i) const;
+
92 
+
93  // Operators
+
94  tquat<T> & operator*=(value_type const & s);
+
95  tquat<T> & operator/=(value_type const & s);
+
96  };
+
97 
+
98  template <typename T>
+
99  detail::tquat<T> operator- (
+
100  detail::tquat<T> const & q);
+
101 
+
102  template <typename T>
+
103  detail::tquat<T> operator+ (
+
104  detail::tquat<T> const & q,
+
105  detail::tquat<T> const & p);
+
106 
+
107  template <typename T>
+
108  detail::tquat<T> operator* (
+
109  detail::tquat<T> const & q,
+
110  detail::tquat<T> const & p);
+
111 
+
112  template <typename T>
+
113  detail::tvec3<T> operator* (
+
114  detail::tquat<T> const & q,
+
115  detail::tvec3<T> const & v);
+
116 
+
117  template <typename T>
+
118  detail::tvec3<T> operator* (
+
119  detail::tvec3<T> const & v,
+
120  detail::tquat<T> const & q);
+
121 
+
122  template <typename T>
+
123  detail::tvec4<T> operator* (
+
124  detail::tquat<T> const & q,
+
125  detail::tvec4<T> const & v);
+
126 
+
127  template <typename T>
+
128  detail::tvec4<T> operator* (
+
129  detail::tvec4<T> const & v,
+
130  detail::tquat<T> const & q);
+
131 
+
132  template <typename T>
+
133  detail::tquat<T> operator* (
+
134  detail::tquat<T> const & q,
+
135  typename detail::tquat<T>::value_type const & s);
+
136 
+
137  template <typename T>
+
138  detail::tquat<T> operator* (
+
139  typename detail::tquat<T>::value_type const & s,
+
140  detail::tquat<T> const & q);
+
141 
+
142  template <typename T>
+
143  detail::tquat<T> operator/ (
+
144  detail::tquat<T> const & q,
+
145  typename detail::tquat<T>::value_type const & s);
146 
-
149 
-
153  template <typename T>
-
154  T length(
-
155  detail::tquat<T> const & q);
-
156 
-
160  template <typename T>
-
161  detail::tquat<T> normalize(
-
162  detail::tquat<T> const & q);
-
163 
-
167  template <typename T>
-
168  T dot(
-
169  detail::tquat<T> const & q1,
-
170  detail::tquat<T> const & q2);
-
171 
-
175  template <typename T>
-
176  detail::tquat<T> mix(
-
177  detail::tquat<T> const & x,
-
178  detail::tquat<T> const & y,
-
179  T const & a);
-
180 
+
147 } //namespace detail
+
148 
+
151 
+
155  template <typename T>
+
156  T length(
+
157  detail::tquat<T> const & q);
+
158 
+
162  template <typename T>
+
163  detail::tquat<T> normalize(
+
164  detail::tquat<T> const & q);
+
165 
+
169  template <typename T>
+
170  T dot(
+
171  detail::tquat<T> const & q1,
+
172  detail::tquat<T> const & q2);
+
173 
184  template <typename T>
-
185  detail::tquat<T> conjugate(
-
186  detail::tquat<T> const & q);
-
187 
-
191  template <typename T>
-
192  detail::tquat<T> inverse(
-
193  detail::tquat<T> const & q);
-
194 
-
202  template <typename T>
-
203  detail::tquat<T> rotate(
-
204  detail::tquat<T> const & q,
-
205  typename detail::tquat<T>::value_type const & angle,
-
206  detail::tvec3<T> const & axis);
-
207 
-
211  template <typename T>
-
212  detail::tvec3<T> eulerAngles(
-
213  detail::tquat<T> const & x);
-
214 
-
218  template <typename T>
-
219  detail::tmat3x3<T> mat3_cast(
-
220  detail::tquat<T> const & x);
-
221 
-
225  template <typename T>
-
226  detail::tmat4x4<T> mat4_cast(
-
227  detail::tquat<T> const & x);
-
228 
-
232  template <typename T>
-
233  detail::tquat<T> quat_cast(
-
234  detail::tmat3x3<T> const & x);
-
235 
+
185  detail::tquat<T> mix(
+
186  detail::tquat<T> const & x,
+
187  detail::tquat<T> const & y,
+
188  T const & a);
+
189 
+
198  template <typename T>
+
199  detail::tquat<T> lerp(
+
200  detail::tquat<T> const & x,
+
201  detail::tquat<T> const & y,
+
202  T const & a);
+
203 
+
212  template <typename T>
+
213  detail::tquat<T> slerp(
+
214  detail::tquat<T> const & x,
+
215  detail::tquat<T> const & y,
+
216  T const & a);
+
217 
+
221  template <typename T>
+
222  detail::tquat<T> conjugate(
+
223  detail::tquat<T> const & q);
+
224 
+
228  template <typename T>
+
229  detail::tquat<T> inverse(
+
230  detail::tquat<T> const & q);
+
231 
239  template <typename T>
-
240  detail::tquat<T> quat_cast(
-
241  detail::tmat4x4<T> const & x);
-
242 
-
246  template <typename valType>
-
247  valType angle(
-
248  detail::tquat<valType> const & x);
-
249 
-
253  template <typename valType>
-
254  detail::tvec3<valType> axis(
-
255  detail::tquat<valType> const & x);
-
256 
-
265  template <typename valType>
-
266  detail::tquat<valType> angleAxis(
-
267  valType const & angle,
-
268  valType const & x,
-
269  valType const & y,
-
270  valType const & z);
-
271 
-
278  template <typename valType>
-
279  detail::tquat<valType> angleAxis(
-
280  valType const & angle,
-
281  detail::tvec3<valType> const & axis);
-
282 
-
286  typedef detail::tquat<float> quat;
-
287 
-
291  typedef detail::tquat<detail::half> hquat;
-
292 
-
296  typedef detail::tquat<float> fquat;
-
297 
-
301  typedef detail::tquat<double> dquat;
-
302 
-
306  typedef detail::tquat<lowp_float> lowp_quat;
+
240  detail::tquat<T> rotate(
+
241  detail::tquat<T> const & q,
+
242  typename detail::tquat<T>::value_type const & angle,
+
243  detail::tvec3<T> const & axis);
+
244 
+
248  template <typename T>
+
249  detail::tvec3<T> eulerAngles(
+
250  detail::tquat<T> const & x);
+
251 
+
255  template <typename valType>
+
256  valType roll(
+
257  detail::tquat<valType> const & x);
+
258 
+
262  template <typename valType>
+
263  valType pitch(
+
264  detail::tquat<valType> const & x);
+
265 
+
269  template <typename valType>
+
270  valType yaw(
+
271  detail::tquat<valType> const & x);
+
272 
+
276  template <typename T>
+
277  detail::tmat3x3<T> mat3_cast(
+
278  detail::tquat<T> const & x);
+
279 
+
283  template <typename T>
+
284  detail::tmat4x4<T> mat4_cast(
+
285  detail::tquat<T> const & x);
+
286 
+
290  template <typename T>
+
291  detail::tquat<T> quat_cast(
+
292  detail::tmat3x3<T> const & x);
+
293 
+
297  template <typename T>
+
298  detail::tquat<T> quat_cast(
+
299  detail::tmat4x4<T> const & x);
+
300 
+
304  template <typename valType>
+
305  valType angle(
+
306  detail::tquat<valType> const & x);
307 
-
311  typedef detail::tquat<mediump_float> mediump_quat;
-
312 
-
316  typedef detail::tquat<highp_float> highp_quat;
-
317 
-
319 } //namespace glm
-
320 
-
321 #include "quaternion.inl"
-
322 
-
323 #endif//GLM_GTC_quaternion
+
311  template <typename valType>
+
312  detail::tvec3<valType> axis(
+
313  detail::tquat<valType> const & x);
+
314 
+
323  template <typename valType>
+
324  detail::tquat<valType> angleAxis(
+
325  valType const & angle,
+
326  valType const & x,
+
327  valType const & y,
+
328  valType const & z);
+
329 
+
336  template <typename valType>
+
337  detail::tquat<valType> angleAxis(
+
338  valType const & angle,
+
339  detail::tvec3<valType> const & axis);
+
340 
+
344  typedef detail::tquat<float> quat;
+
345 
+
349  typedef detail::tquat<detail::half> hquat;
+
350 
+
354  typedef detail::tquat<float> fquat;
+
355 
+
359  typedef detail::tquat<double> dquat;
+
360 
+
364  typedef detail::tquat<lowp_float> lowp_quat;
+
365 
+
369  typedef detail::tquat<mediump_float> mediump_quat;
+
370 
+
374  typedef detail::tquat<highp_float> highp_quat;
+
375 
+
377 } //namespace glm
+
378 
+
379 #include "quaternion.inl"
+
380 
+
381 #endif//GLM_GTC_quaternion