diff options
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ #define PATH_H #include <gsl/gsl_spline.h> +#include <stddef.h> /* for size_t */ /* Minimum value for the scattering RMS `theta0`. * @@ -20,6 +21,8 @@ typedef struct path { double dir[3]; double theta0; + size_t n; + double *s; double *x; double *y; |