diff --git a/src/python/magnum/math.cpp b/src/python/magnum/math.cpp index 486f55f..52e80d8 100644 --- a/src/python/magnum/math.cpp +++ b/src/python/magnum/math.cpp @@ -271,7 +271,7 @@ template void quaternion(py::module_& m, py::class_& c) { "Dot product between two quaternions") .def("angle", [](const T& a, const T& b) { return Radd(Math::angle(a, b)); - }, "Angle between normalized quaternions") + }, "Angle between normalized quaternions", py::arg("normalized_a"), py::arg("normalized_b")) .def("lerp", static_cast(&Math::lerp), "Linear interpolation of two quaternions", py::arg("normalized_a"), py::arg("normalized_b"), py::arg("t")) .def("lerp_shortest_path", static_cast(&Math::lerpShortestPath),