From 7a3ed673b85e3fbf4226c163f2214caf326130dc Mon Sep 17 00:00:00 2001 From: Pierre Fernbach <pierre.fernbach@laas.fr> Date: Mon, 2 Dec 2019 16:19:45 +0100 Subject: [PATCH] [Python] fix mistake for piecewise.convert_piecewise_curve_to_polynomial --- python/curves_python.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/curves_python.cpp b/python/curves_python.cpp index 4557808..77d2bf0 100644 --- a/python/curves_python.cpp +++ b/python/curves_python.cpp @@ -641,7 +641,7 @@ BOOST_PYTHON_MODULE(curves) { .def("is_continuous", &piecewise_t::is_continuous, "Check if the curve is continuous at the given order.",args("self,order")) .def("convert_piecewise_curve_to_polynomial", - &piecewise_t::convert_piecewise_curve_to_bezier<polynomial_t>, + &piecewise_t::convert_piecewise_curve_to_polynomial<polynomial_t>, "Convert a piecewise curve to to a piecewise polynomial curve") .def("convert_piecewise_curve_to_bezier", &piecewise_t::convert_piecewise_curve_to_bezier<bezier_t>, -- GitLab