Skip to content

Commit

Permalink
Added fedback
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández <[email protected]>
  • Loading branch information
ahcorde committed Dec 29, 2021
1 parent 0a9709d commit e89b7d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/python_pybind11/src/OrientedBox.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#define IGNITION_MATH_PYTHON__ORIENTEDBOX_HH_

#include <string>
#include <vector>

#include <pybind11/pybind11.h>
#include <pybind11/operators.h>
Expand Down
4 changes: 2 additions & 2 deletions src/python_pybind11/src/_ignition_math_pybind11.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ PYBIND11_MODULE(math, m)
ignition::math::python::defineMathQuaternion<double>(m, "Quaterniond");
ignition::math::python::defineMathQuaternion<float>(m, "Quaternionf");

ignition::math::python::defineMathOrientedBox<double>(m, "OrientedBoxd");

ignition::math::python::defineMathPose3<int>(m, "Pose3i");
ignition::math::python::defineMathPose3<double>(m, "Pose3d");
ignition::math::python::defineMathPose3<float>(m, "Pose3f");

ignition::math::python::defineMathMassMatrix3<double>(m, "MassMatrix3d");
ignition::math::python::defineMathMassMatrix3<float>(m, "MassMatrix3f");

ignition::math::python::defineMathOrientedBox<double>(m, "OrientedBoxd");

ignition::math::python::defineMathFilter<int>(m, "Filteri");
ignition::math::python::defineMathFilter<float>(m, "Filterf");
ignition::math::python::defineMathFilter<double>(m, "Filterd");
Expand Down

0 comments on commit e89b7d9

Please sign in to comment.