mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-13 02:52:13 +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
215 B
OpenEdge ABL
11 lines
215 B
OpenEdge ABL
/* File : geodetic.i */
|
|
%module geodetic
|
|
%feature("autodoc", "3");
|
|
%include "typemaps.i"
|
|
%include pprz_geodetic_int.i
|
|
%include pprz_geodetic_float.i
|
|
%include pprz_geodetic_double.i
|
|
%{
|
|
#define SWIG_FILE_WITH_INIT
|
|
%}
|