2013-11-15 14:59:02 +08:00
|
|
|
#include <boost/python.hpp>
|
|
|
|
|
#include <boost/cstdint.hpp>
|
|
|
|
|
|
|
|
|
|
void exportPoint2();
|
2013-11-16 06:59:36 +08:00
|
|
|
void exportRot2();
|
|
|
|
|
void exportPose2();
|
2013-11-15 14:59:02 +08:00
|
|
|
|
|
|
|
|
BOOST_PYTHON_MODULE(libgeometry){
|
|
|
|
|
using namespace boost::python;
|
|
|
|
|
exportPoint2();
|
2013-11-16 06:59:36 +08:00
|
|
|
exportRot2();
|
|
|
|
|
exportPose2();
|
2013-11-15 14:59:02 +08:00
|
|
|
}
|