Skip to content

Commit

Permalink
fixed extra comma in math
Browse files Browse the repository at this point in the history
  • Loading branch information
scottenglert committed Jun 11, 2022
1 parent 48344b8 commit 6312a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Math.inl
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ Quaternion
.def("normalizeIt", &MQuaternion::normalizeIt)
.def("setToXAxis", &MQuaternion::setToXAxis, py::arg("angle"))
.def("setToYAxis", &MQuaternion::setToYAxis, py::arg("angle"))
.def("setToZAxis", &MQuaternion::setToZAxis, , py::arg("angle"))
.def("setToZAxis", &MQuaternion::setToZAxis, py::arg("angle"))
.def("setValue", [](MQuaternion& self, const MQuaternion& quat) {
self = quat;
}, py::arg("quat"))
Expand Down

0 comments on commit 6312a96

Please sign in to comment.