summaryrefslogtreecommitdiffstats
path: root/Smoke/fluids.h
diff options
context:
space:
mode:
Diffstat (limited to 'Smoke/fluids.h')
-rw-r--r--Smoke/fluids.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/Smoke/fluids.h b/Smoke/fluids.h
index 32082db..d28f176 100644
--- a/Smoke/fluids.h
+++ b/Smoke/fluids.h
@@ -49,11 +49,6 @@ struct point2f {
};
struct fftw_real_xy {
- fftw_real x;
- fftw_real y;
-};
-
-struct fftw_real_xy_p {
fftw_real *x;
fftw_real *y;
};
@@ -62,13 +57,13 @@ struct vis_data_arrays {
fftw_real *rho;
fftw_real *vel;
fftw_real *force;
- struct fftw_real_xy *scalars;
+ struct fftw_real_xy scalars;
fftw_real *div_vel;
fftw_real *div_force;
fftw_real *height;
struct point *normals;
fftw_real *history_frame[HISTORY_SIZE];
- struct fftw_real_xy *history_scalars[HISTORY_SIZE];
+ struct fftw_real_xy history_scalars[HISTORY_SIZE];
};