Skip to content
Snippets Groups Projects
Commit 0d424d5b authored by jcarpent's avatar jcarpent
Browse files

[Python] Remove duplicate exposing.

parent 30f0d8fa
Branches
Tags
No related merge requests found
......@@ -248,9 +248,6 @@ namespace se3
.def(bp::vector_indexing_suite< std::vector<bool> >());
bp::class_< std::vector<double> >("StdVec_double")
.def(bp::vector_indexing_suite< std::vector<double> >());
bp::class_< JointModelVector >("StdVec_JointModelVector")
.def(bp::vector_indexing_suite< JointModelVector, true >());
bp::class_<ModelHandler>("Model",
"Articulated rigid body model (const)",
......
......@@ -66,8 +66,8 @@ namespace se3
{
exposeVariants();
JointModelPythonVisitor::expose();
bp::class_< JointModelVector >("StdVec_JointModelVector")
.def(bp::vector_indexing_suite< JointModelVector, true >());
bp::class_<JointModelVector>("StdVec_JointModelVector")
.def(bp::vector_indexing_suite<JointModelVector,true>());
}
void exposeModel()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment