mFES - molecular Finite Element Solver  0.4
gridTypes.h
Go to the documentation of this file.
00001 typedef struct p
00002 {
00003         short x;
00004         short y;
00005         short z;
00006 } PPoint;
00007 
00008 typedef struct gp
00009 {
00010         PPoint point;
00011         char phi;
00012         int from;
00013         float dist;
00014 } GridPoint;
00015 
00016 typedef struct g
00017 {
00018         short N;
00019         GridPoint*** matrix;
00020         short stepSize;
00021 } *lGrid;