py_typedefs.h 389 B

123456789101112
  1. #include <pybind11/pybind11.h>
  2. #include <pybind11/stl_bind.h>
  3. typedef std::vector<Eigen::Quaterniond,Eigen::aligned_allocator<Eigen::Quaterniond> > RotationList;
  4. PYBIND11_MAKE_OPAQUE(RotationList)
  5. //typedef std::vector<Eigen::Vector3d> TranslationList;
  6. //PYBIND11_MAKE_OPAQUE(TranslationList);
  7. PYBIND11_MAKE_OPAQUE(std::vector<int>)
  8. PYBIND11_MAKE_OPAQUE(std::vector<std::vector<int>>)