Skip to content

Commit

Permalink
Fix name of python binding for vector-of-quaternions type
Browse files Browse the repository at this point in the history
As written this was called QuatVectorVector, this renames it to the more
accurate QuatVector.
  • Loading branch information
arahlin committed Oct 12, 2023
1 parent 4e83693 commit f39c55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/G3Quat.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ PYBINDINGS("core")
.def("dot3", dot3, "Dot product of last three entries")
.def("cross3", cross3, "Cross product of last three entries")
;
register_vector_of<quat>("QuatVector");
register_vector_of<quat>("Quat");
object vq =
register_g3vector<quat>("G3VectorQuat",
"List of quaternions. Convertible to a 4xN numpy array. "
Expand Down

0 comments on commit f39c55e

Please sign in to comment.