File: nntypes.h

package info (click to toggle)
pybdsf 1.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,160 kB
  • sloc: fortran: 40,850; python: 14,894; ansic: 4,347; cpp: 1,586; makefile: 131; sh: 46
file content (29 lines) | stat: -rw-r--r-- 465 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
struct datum
{  double       values[3];
   struct datum *nextdat;
};

struct simp
{  int          vert[3];
   double       cent[3];
   struct simp  *nextsimp;
};

struct temp
{  int          end[2];
   struct temp  *nexttemp;
};

struct neig
{  int          neinum;
   double       narea;
   double       coord;
   struct neig  *nextneig;
};

struct asinfo
{  int          crows;
   int          ccols;
   float        **aspect_out;
   float        **slope_out;
};