.def("derivate",pure_virtual(&curve_abc_t::derivate),"Evaluate the derivative of order N of curve at time t.",
args("self","t","N"))
.def("compute_derivate",pure_virtual(&curve_abc_t::compute_derivate),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("compute_derivate",pure_virtual(&curve_abc_t::compute_derivate_ptr),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("min",pure_virtual(&curve_abc_t::min),"Get the LOWER bound on interval definition of the curve.")
.def("max",pure_virtual(&curve_abc_t::max),"Get the HIGHER bound on interval definition of the curve.")
.def("dim",pure_virtual(&curve_abc_t::dim),"Get the dimension of the curve.")
...
...
@@ -424,7 +424,7 @@ BOOST_PYTHON_MODULE(curves) {
args("self","t"))
.def("derivate",pure_virtual(&curve_3_t::derivate),"Evaluate the derivative of order N of curve at time t.",
args("self","t","N"))
.def("compute_derivate",pure_virtual(&curve_3_t::compute_derivate),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("compute_derivate",pure_virtual(&curve_3_t::compute_derivate_ptr),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("min",pure_virtual(&curve_3_t::min),"Get the LOWER bound on interval definition of the curve.")
.def("max",pure_virtual(&curve_3_t::max),"Get the HIGHER bound on interval definition of the curve.")
.def("dim",pure_virtual(&curve_3_t::dim),"Get the dimension of the curve.");
"Evaluate the derivative of order N of curve at time t.",args("self","t","N"))
.def("compute_derivate",pure_virtual(&curve_rotation_t::compute_derivate),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("compute_derivate",pure_virtual(&curve_rotation_t::compute_derivate_ptr),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("min",pure_virtual(&curve_rotation_t::min),"Get the LOWER bound on interval definition of the curve.")
.def("max",pure_virtual(&curve_rotation_t::max),"Get the HIGHER bound on interval definition of the curve.")
.def("dim",pure_virtual(&curve_rotation_t::dim),"Get the dimension of the curve.");
"Evaluate the derivative of order N of curve at time t. Return as a vector 6.",args("self","t","N"))
.def("compute_derivate",pure_virtual(&curve_rotation_t::compute_derivate),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("compute_derivate",pure_virtual(&curve_rotation_t::compute_derivate_ptr),return_value_policy<manage_new_object>(),"Return the derivative of *this at the order N.",args("self","N"))
.def("min",pure_virtual(&curve_SE3_t::min),"Get the LOWER bound on interval definition of the curve.")
.def("max",pure_virtual(&curve_SE3_t::max),"Get the HIGHER bound on interval definition of the curve.")
.def("dim",pure_virtual(&curve_SE3_t::dim),"Get the dimension of the curve.")