Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added MassMatrix3 pybind11 interface #345

Merged
merged 5 commits into from
Dec 28, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ if (PYTHONLIBS_FOUND)
DiffDriveOdometry_TEST
Frustum_TEST
Inertial_TEST
MassMatrix3_TEST
Matrix4_TEST
OrientedBox_TEST
PID_TEST
Expand Down
1 change: 1 addition & 0 deletions src/python_pybind11/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ if (${pybind11_FOUND})
Line3_TEST
Material_TEST
Matrix3_TEST
MassMatrix3_TEST
MovingWindowFilter_TEST
Pose3_TEST
Quaternion_TEST
Expand Down
200 changes: 200 additions & 0 deletions src/python_pybind11/src/MassMatrix3.hh
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
/*
* Copyright (C) 2021 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

#ifndef IGNITION_MATH_PYTHON__MASSMATRIX3_HH_
#define IGNITION_MATH_PYTHON__MASSMATRIX3_HH_

#include <pybind11/pybind11.h>
#include <pybind11/operators.h>
#include <string>

#include <ignition/math/Helpers.hh>
#include <ignition/math/MassMatrix3.hh>

namespace py = pybind11;

namespace ignition
{
namespace math
{
namespace python
{
/// Define a pybind11 wrapper for an ignition::math::MassMatrix3
/**
* \param[in] module a pybind11 module to add the definition to
* \param[in] typestr name of the type used by Python
*/
template<typename T>
void defineMathMassMatrix3(py::module &m, const std::string &typestr)
{
using Class = ignition::math::MassMatrix3<T>;
std::string pyclass_name = typestr;
py::class_<Class>(m,
pyclass_name.c_str(),
py::buffer_protocol(),
py::dynamic_attr())
.def(py::init<>())
.def(py::init<const Class&>())
.def(py::init<const T&, const ignition::math::Vector3<T>&,
const ignition::math::Vector3<T>&>())
.def("set_mass", &Class::SetMass, "Set the mass.")
.def("mass", py::overload_cast<>(&Class::Mass, py::const_), "Get the mass")
.def("ixx", &Class::Ixx, "Get ixx")
.def("ixy", &Class::Ixy, "Get ixy")
.def("ixz", &Class::Ixz, "Get ixz")
.def("iyy", &Class::Iyy, "Get iyy")
.def("iyz", &Class::Iyz, "Get iyz")
.def("izz", &Class::Izz, "Get izz")
.def("set_ixx", &Class::SetIxx, "Set ixx")
.def("set_ixy", &Class::SetIxy, "Set ixy")
.def("set_ixz", &Class::SetIxz, "Set ixz")
.def("set_iyy", &Class::SetIyy, "Set iyy")
.def("set_iyz", &Class::SetIyz, "Set iyz")
.def("set_izz", &Class::SetIzz, "Set izz")
.def("moi", &Class::Moi, "Returns Moments of Inertia as a Matrix")
.def("set_moi",
&Class::SetMoi,
"Sets Moments of Inertia (MOI) from a Matrix3.")
.def("set_inertia_matrix",
&Class::SetInertiaMatrix,
"Set the moment of inertia matrix.")
.def("off_diagonal_moments",
py::overload_cast<>(&Class::OffDiagonalMoments, py::const_),
"Get the off-diagonal moments of inertia (Ixy, Ixz, Iyz).")
.def("set_off_diagonal_moments",
&Class::SetOffDiagonalMoments,
"Set the off-diagonal moments of inertia (Ixy, Ixz, Iyz).")
.def("diagonal_moments",
py::overload_cast<>(&Class::DiagonalMoments, py::const_),
"Get the diagonal moments of inertia (Ixx, Iyy, Izz).")
.def("set_diagonal_moments",
&Class::SetDiagonalMoments,
"Set the diagonal moments of inertia (Ixx, Iyy, Izz).")
.def("set_from_box",
py::overload_cast<const Material&, const ignition::math::Vector3<T>&,
const ignition::math::Quaternion<T>&>
(&Class::SetFromBox),
py::arg("_mat") = ignition::math::Material(),
py::arg("_size") = ignition::math::Vector3<T>::Zero,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
"Set inertial properties based on a Material and equivalent box.")
.def("set_from_box",
py::overload_cast<const T, const ignition::math::Vector3<T>&,
const ignition::math::Quaternion<T>&>
(&Class::SetFromBox),
py::arg("_mass") = 0,
py::arg("_size") = ignition::math::Vector3<T>::Zero,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
"Set inertial properties based on a Material and equivalent box.")
.def("set_from_box",
py::overload_cast<const ignition::math::Vector3<T>&,
const ignition::math::Quaternion<T>&>
(&Class::SetFromBox),
py::arg("_size") = ignition::math::Vector3<T>::Zero,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
"Set inertial properties based on a Material and equivalent box.")
.def("set_from_cylinder_z",
py::overload_cast<const Material&, const T, const T,
const ignition::math::Quaternion<T>&>
(&Class::SetFromCylinderZ),
py::arg("_mat") = ignition::math::Material(),
py::arg("_length") = 0,
py::arg("_radius") = 0,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
"Set inertial properties based on a Material and equivalent "
"cylinder aligned with Z axis.")
.def("set_from_cylinder_z",
py::overload_cast<const T, const T, const T,
const ignition::math::Quaternion<T>&>
(&Class::SetFromCylinderZ),
py::arg("_mass") = 0,
py::arg("_length") = 0,
py::arg("_radius") = 0,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
"Set inertial properties based on a Material and equivalent "
"cylinder aligned with Z axis.")
.def("set_from_cylinder_z",
py::overload_cast<const T, const T,
const ignition::math::Quaternion<T>&>
(&Class::SetFromCylinderZ),
py::arg("_length") = 0,
py::arg("_radius") = 0,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
"Set inertial properties based on a Material and equivalent "
"cylinder aligned with Z axis.")
.def("set_from_sphere",
py::overload_cast<const Material&, const T>
(&Class::SetFromSphere),
"Set inertial properties based on a material and "
"equivalent sphere.")
.def("set_from_sphere",
py::overload_cast<const T, const T>
(&Class::SetFromSphere),
"Set inertial properties based on mass and equivalent sphere.")
.def("set_from_sphere",
py::overload_cast<const T>
(&Class::SetFromSphere),
"Set inertial properties based on equivalent sphere "
"using the current mass value.")
.def("equivalent_box",
&Class::EquivalentBox,
py::arg("_size") = ignition::math::Vector3<T>::Zero,
py::arg("_rot") = ignition::math::Quaternion<T>::Identity,
py::arg("_tol") = 1e-6,
"Get dimensions and rotation offset of uniform box "
"with equivalent mass and moment of inertia.")
.def("principal_axes_offset",
&Class::PrincipalAxesOffset,
py::arg("_tol") = 1e-6,
"Compute rotational offset of principal axes.")
.def("principal_moments",
&Class::PrincipalMoments,
py::arg("_tol") = 1e-6,
"Compute principal moments of inertia.")
.def("valid_moments",
&Class::ValidMoments,
py::arg("_tolerance") = 0.1,
"Verify that principal moments are positive")
.def("is_valid",
&Class::IsValid,
py::arg("_tolerance") = IGN_MASSMATRIX3_DEFAULT_TOLERANCE<T>,
"Verify that inertia values are positive semi-definite "
"and satisfy the triangle inequality.")
.def("epsilon",
py::overload_cast<const ignition::math::Vector3<T>&, const T>
(&Class::Epsilon),
py::arg("_tolerance") = IGN_MASSMATRIX3_DEFAULT_TOLERANCE<T>,
"Get an epsilon value that represents the amount of "
"acceptable error in a MassMatrix3. The epsilon value "
"is related to machine precision multiplied by the largest possible "
"moment of inertia.")
.def("is_positive",
&Class::IsPositive,
py::arg("_tolerance") = IGN_MASSMATRIX3_DEFAULT_TOLERANCE<T>,
"Verify that inertia values are positive definite")
.def("is_near_positive",
&Class::IsNearPositive,
py::arg("_tolerance") = IGN_MASSMATRIX3_DEFAULT_TOLERANCE<T>,
"Verify that inertia values are positive semidefinite")
.def(py::self != py::self)
.def(py::self == py::self);
}
} // namespace python
} // namespace math
} // namespace ignition

#endif // IGNITION_MATH_PYTHON__MASSMATRIX3_HH_
4 changes: 4 additions & 0 deletions src/python_pybind11/src/_ignition_math_pybind11.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "Kmeans.hh"
#include "Line2.hh"
#include "Line3.hh"
#include "MassMatrix3.hh"
#include "Material.hh"
#include "Matrix3.hh"
#include "MovingWindowFilter.hh"
Expand Down Expand Up @@ -117,6 +118,9 @@ PYBIND11_MODULE(math, m)
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::defineMathFilter<int>(m, "Filteri");
ignition::math::python::defineMathFilter<float>(m, "Filterf");
ignition::math::python::defineMathFilter<double>(m, "Filterd");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
import unittest
import math

import ignition.math

from ignition.math import sort3
from ignition.math import MassMatrix3d
from ignition.math import Material
from ignition.math import Vector3d
from ignition.math import Matrix3d
from ignition.math import Quaterniond
Expand Down Expand Up @@ -356,7 +356,7 @@ def verify_diagonal_moments_and_axes(self, _moments):
m0 = _moments.x()
m1 = _moments.y()
m2 = _moments.z()
m0, m1, m2 = ignition.math.sort3(m0, m1, m2)
m0, m1, m2 = sort3(m0, m1, m2)
sortedMoments.set(m0, m1, m2)
tolerance = -1e-6
self.assertEqual(m.principal_moments(tolerance), sortedMoments)
Expand Down Expand Up @@ -664,7 +664,7 @@ def test_equivalent_box(self):
self.assertEqual(m, m2)

density = mass / (sizeTrue.x() * sizeTrue.y() * sizeTrue.z())
mat = ignition.math.Material(density)
mat = Material(density)
self.assertEqual(density, mat.density())
m3 = MassMatrix3d()
self.assertTrue(m3.set_from_box(mat, sizeTrue, rotTrue))
Expand Down Expand Up @@ -779,10 +779,10 @@ def test_set_from_cylinderZ(self):
self.assertEqual(m.off_diagonal_moments(), Vector3d.ZERO)

density = mass / (IGN_PI * radius * radius * length)
mat = ignition.math.Material(density)
mat = Material(density)
self.assertEqual(density, mat.density())
m1 = MassMatrix3d()
# self.assertFalse(m1.set_from_cylinder_z(ignition.math.Material(0), length, radius))
# self.assertFalse(m1.set_from_cylinder_z(Material(0), length, radius))
self.assertTrue(m1.set_from_cylinder_z(mat, length, radius))
self.assertEqual(m, m1)

Expand Down Expand Up @@ -814,11 +814,11 @@ def test_set_from_sphere(self):
self.assertEqual(m.off_diagonal_moments(), Vector3d.ZERO)

density = mass / ((4.0/3.0) * IGN_PI * math.pow(radius, 3))
mat = ignition.math.Material(density)
mat = Material(density)
self.assertEqual(density, mat.density())
m1 = MassMatrix3d()
self.assertFalse(m1.set_from_sphere(mat, 0))
self.assertFalse(m1.set_from_sphere(ignition.math.Material(0), 0))
self.assertFalse(m1.set_from_sphere(Material(0), 0))
self.assertTrue(m1.set_from_sphere(mat, radius))
self.assertEqual(m, m1)

Expand Down