summaryrefslogtreecommitdiff
path: root/src/modules/flow/ff.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/flow/ff.h')
-rw-r--r--src/modules/flow/ff.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/modules/flow/ff.h b/src/modules/flow/ff.h
index 0324ea0..b148c2e 100644
--- a/src/modules/flow/ff.h
+++ b/src/modules/flow/ff.h
@@ -5,9 +5,14 @@
typedef struct ff_t ff_t;
-ff_t * ff_new(unsigned size, void (*populator)(void *context, unsigned size, const v3f_t *other, v3f_t *field), void *context);
+typedef struct ff_data_t {
+ v3f_t direction;
+ v3f_t color;
+} ff_data_t;
+
+ff_t * ff_new(unsigned size, void (*populator)(void *context, unsigned size, const ff_data_t *other, ff_data_t *field), void *context);
ff_t * ff_free(ff_t *ff);
-v3f_t ff_get(ff_t *ff, v3f_t *coordinate, float w);
+ff_data_t ff_get(ff_t *ff, v3f_t *coordinate, float w);
void ff_populate(ff_t *ff, unsigned idx);
#endif
© All Rights Reserved