123456789101112131415161718192021222324252627 |
- #define PROGVERSION 0.10
- #define PROGNAME "v.hull"
- /* if DEBUG > 1 we will dump even more details */
- #define DEBUG 0
- /* NULL valued cells */
- #define NULLVALUE -1
- /* masked cells */
- #define MASKVALUE -2
- /* unset cells */
- #define UNSET -3
- /* value to represent NULL in VTK files */
- #define DNULLVALUE -99999.99
- #define TMPFILE "voxeltmp.tmp"
- /* number of decimal places with which coordinates are stored */
- double PRECISION;
- /* verbose output includes progress display */
- int VERBOSE;
- /* number of DEMs in the input */
- int NSLICES;
|