Update quaternion.inl

This commit is contained in:
CaptainCarrot 2017-11-21 20:10:54 +01:00 committed by GitHub
parent 7ba519491e
commit b4e49055d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,7 +246,7 @@ namespace glm
result[0] = normalize(cross(up, direction));
result[1] = cross(direction, result[0]);
result[2] = direction;
result[2] = direction;
return quat_cast(result);
}