source:
anuga_work/development/anugavis/src/globals.h
@
5263
Last change on this file since 5263 was 5263, checked in by jack, 17 years ago | |
---|---|
File size: 373 bytes |
Line | |
---|---|
1 | #ifndef GLOBALS_H |
2 | #define GLOBALS_H |
3 | |
4 | #include <SDL.h> |
5 | #include "height_quantity.h" |
6 | |
7 | typedef struct{ |
8 | SDL_Surface *screen; |
9 | int netcdfId; |
10 | size_t number_of_points; |
11 | size_t number_of_vertices; |
12 | size_t number_of_volumes; |
13 | float *x; |
14 | float *y; |
15 | float *cells; |
16 | struct height_quantity_simple *heights; |
17 | } ANUGAVIS; |
18 | |
19 | extern ANUGAVIS anugavis; |
20 | |
21 | #endif |
Note: See TracBrowser
for help on using the repository browser.