Skip to content

Commit e685337

Browse files
authored
Fixed using of functions xMath_quat_rotation_y and xMath_quat_rotation_z (#10)
1 parent 215ff9d commit e685337

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xmath/src/xMath.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,8 +558,8 @@ static const luaL_reg xMathModule_methods[] =
558558
{"quat_basis", xMath_quat_basis},
559559
{"quat_from_to", xMath_quat_from_to},
560560
{"quat_rotation_x", xMath_quat_rotation_x},
561-
{"quat_rotation_y", xMath_quat_rotation_x},
562-
{"quat_rotation_z", xMath_quat_rotation_x},
561+
{"quat_rotation_y", xMath_quat_rotation_y},
562+
{"quat_rotation_z", xMath_quat_rotation_z},
563563
{"quat", xMath_quat},
564564
//* Vector + Quat
565565
{"lerp", xMath_lerp},

0 commit comments

Comments
 (0)