quat: update call versions of quaternion

This commit is contained in:
Recep Aslantas
2018-04-11 11:19:13 +03:00
parent fdea13507b
commit 51278b26b4
3 changed files with 222 additions and 11 deletions

View File

@@ -231,8 +231,8 @@ glm_quat_normalize(versor q) {
*/
CGLM_INLINE
float
glm_quat_dot(versor q1, versor q2) {
return glm_vec4_dot(q1, q2);
glm_quat_dot(versor p, versor q) {
return glm_vec4_dot(p, q);
}
/*!