Files
paparazzi/sw/lib/python/pprz_math/algebra.i
T
Felix Ruess 0e529758c0 [python] rename math to pprz_math and add algebra module
to use it e.g. in ipython:
PYTHONPATH=$PPRZ_SRC/sw/lib/python iypthon
$ from pprz_math.geodetic import *
or
$ import pprz_math.algebra
2015-01-13 16:33:35 +01:00

11 lines
210 B
OpenEdge ABL

/* File : algebra.i */
%module algebra
%feature("autodoc", "3");
%include "typemaps.i"
%include pprz_algebra_int.i
%include pprz_algebra_float.i
%include pprz_algebra_double.i
%{
#define SWIG_FILE_WITH_INIT
%}