MCPcopy Create free account
hub / github.com/Simple-Robotics/aligator / exposeStdVectorEigenStdAlloc

Function exposeStdVectorEigenStdAlloc

bindings/python/src/module.cpp:63–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61
62template <typename MatType, bool NoProxy = false>
63void exposeStdVectorEigenStdAlloc(const char *name) {
64 using vector_type = std::vector<MatType>;
65 auto full_name = std::string("StdVec_").append(name);
66 eigenpy::StdVectorPythonVisitor<vector_type, NoProxy>::expose(
67 full_name.c_str(),
68 eigenpy::details::overload_base_get_item_for_std_vector<vector_type>());
69}
70
71static void exposeContainers() {
72 using VecXBool = Eigen::Matrix<bool, Eigen::Dynamic, 1>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected