Files
progsync/cours/inverted-pendulum/pendulum.i
Adrien Guatto 70fc7019dc Cours 7
2025-11-10 18:12:19 +01:00

17 lines
347 B
OpenEdge ABL

%module pendulum
%{
#define SWIG_FILE_WITH_INIT
#include "pendulum.h"
#include "/usr/include/math.h" // hack to avoid Heptagon's math.h
%}
// Important: makes SWIG aware of our dumb "string" type.
%include "mathext_types.h"
%rename("%(strip:[Pendulum__])s") "";
%include "pendulum_types.h"
%include "pendulum.h"
%pythoncode "node_wrapping.py"