Fix Rotation constructor error msg

This commit is contained in:
Alex Neufeld
2023-12-20 21:26:17 -07:00
committed by Chris Hennes
parent e264b70e2c
commit 8936a4bd1b

View File

@@ -247,9 +247,9 @@ int RotationPy::PyInit(PyObject* args, PyObject* kwds)
PyErr_SetString(PyExc_TypeError,
"Rotation constructor accepts:\n"
"-- empty parameter list\n"
"-- Rotation object"
"-- Rotation object\n"
"-- four floats (a quaternion)\n"
"-- three floats (yaw, pitch, roll)"
"-- three floats (yaw, pitch, roll)\n"
"-- Vector (rotation axis) and float (rotation angle)\n"
"-- two Vectors (two axes)\n"
"-- Matrix object\n"