Browse Source

Fixed ticket #124 cast from mat* to quat undefined error

Christophe Riccio 14 years ago
parent
commit
b2cb4fe479
1 changed files with 2 additions and 2 deletions
  1. 2 2
      glm/gtc/quaternion.inl

+ 2 - 2
glm/gtc/quaternion.inl

@@ -88,7 +88,7 @@ namespace detail{
 		tmat3x3<T> const & m
 		tmat3x3<T> const & m
 	)
 	)
     {
     {
-		*this = toQuat(m);
+		*this = gtc::quaternion::quat_cast(m);
     }
     }
 
 
     template <typename T> 
     template <typename T> 
@@ -97,7 +97,7 @@ namespace detail{
 		tmat4x4<T> const & m
 		tmat4x4<T> const & m
 	)
 	)
     {
     {
-		*this = toQuat(m);
+		*this = gtc::quaternion::quat_cast(m);
     }
     }
 
 
     //////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////