source: anuga_work/development/anugavis/src/globals.h @ 5261

Last change on this file since 5261 was 5261, checked in by jack, 16 years ago

AnugaVis?: read lists of x and y points from NetCDF file.

File size: 314 bytes
Line 
1#ifndef GLOBALS_H
2#define GLOBALS_H
3
4#include <SDL.h>
5#include "height_quantity.h"
6
7typedef struct{
8  SDL_Surface *screen;
9  int netcdfId;
10  size_t number_of_points;
11  float *x;
12  float *y;
13  float *cells;
14  struct height_quantity_simple *heights;
15} ANUGAVIS;
16
17extern ANUGAVIS anugavis;
18
19#endif
Note: See TracBrowser for help on using the repository browser.