Control Libraries
6.3.4
Loading...
Searching...
No Matches
python
source
state_representation
state_representation_bindings.cpp
1
#include "state_representation_bindings.h"
2
3
#define STRINGIFY(x) #x
4
#define MACRO_STRINGIFY(x) STRINGIFY(x)
5
6
PYBIND11_MODULE(
state_representation
, m) {
7
m.doc() =
"Python bindings for control libraries state_representation"
;
8
9
#ifdef MODULE_VERSION_INFO
10
m.attr(
"__version__"
) = MACRO_STRINGIFY(MODULE_VERSION_INFO);
11
#else
12
m.attr(
"__version__"
) =
"dev"
;
13
#endif
14
15
bind_state(m);
16
bind_cartesian_space(m);
17
bind_joint_space(m);
18
bind_jacobian(m);
19
bind_parameters(m);
20
bind_geometry(m);
21
}
state_representation
Core state variables and objects.
Definition:
EmptyStateException.hpp:6
Generated by
1.9.5