globals.h 537 B

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