Skip to content
Snippets Groups Projects
Verified Commit bb9a02ac authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: make convert more versatile

parent 9d26d65d
No related branches found
No related tags found
No related merge requests found
...@@ -160,8 +160,12 @@ namespace eigenpy ...@@ -160,8 +160,12 @@ namespace eigenpy
} }
/// \brief Copy mat into the Python array using Eigen::Map /// \brief Copy mat into the Python array using Eigen::Map
static void convert(Type const & mat, PyArrayObject * pyArray) template<typename MatrixDerived>
static void convert(const Eigen::MatrixBase<MatrixDerived> & mat_,
PyArrayObject * pyArray)
{ {
const MatrixDerived & mat = const_cast<const MatrixDerived &>(mat_.derived());
if(NumpyEquivalentType<Scalar>::type_code == GET_PY_ARRAY_TYPE(pyArray)) if(NumpyEquivalentType<Scalar>::type_code == GET_PY_ARRAY_TYPE(pyArray))
{ {
MapNumpy<MatType,Scalar>::map(pyArray) = mat; // no cast needed MapNumpy<MatType,Scalar>::map(pyArray) = mat; // no cast needed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment