/* ---------------------------------------------------------------------------- * GTSAM Copyright 2010, Georgia Tech Research Corporation, * Atlanta, Georgia 30332-0415 * All Rights Reserved * Authors: Frank Dellaert, et al. (see THANKS for the full author list) * See LICENSE for the license information * -------------------------------------------------------------------------- */ /** * @file export_slam * @brief wraps slam classes * @author Ellon Paiva Mendes (LAAS-CNRS) * @author Frank Dellaert **/ #include #define NO_IMPORT_ARRAY #include #include using namespace boost::python; using namespace gtsam; using namespace std; void export_slam() { class_>( "RotateDirectionsFactor", init()) .def("Initialize", &RotateDirectionsFactor::Initialize) .staticmethod("Initialize"); }