Parcourir la source

Update mQuat.h

irei1as il y a 9 ans
Parent
commit
6891d348af
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Engine/source/math/mQuat.h

+ 1 - 1
Engine/source/math/mQuat.h

@@ -227,7 +227,7 @@ inline F32 QuatF::dot( const QuatF &q ) const
 
 
 inline F32 QuatF::angleBetween( const QuatF & q )
 inline F32 QuatF::angleBetween( const QuatF & q )
 {
 {
-   // angle between two quaternions.
+   // angle between two normalized quaternions.
    return mAcos(q.dot(*this)) * 2.0f;
    return mAcos(q.dot(*this)) * 2.0f;
 }
 }