mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-12 01:27:30 +08:00
0e529758c0
to use it e.g. in ipython: PYTHONPATH=$PPRZ_SRC/sw/lib/python iypthon $ from pprz_math.geodetic import * or $ import pprz_math.algebra
11 lines
210 B
OpenEdge ABL
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
|
|
%}
|