Update mQuat.h

This commit is contained in:
irei1as 2016-02-15 18:50:18 +01:00
parent 39613c0d87
commit 6891d348af

View file

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