globaldefs.h 788 B

12345678910111213141516171819202122232425262728
  1. /****************************************************************************
  2. *
  3. * MODULE: r.out.vtk
  4. *
  5. * AUTHOR(S): Original author
  6. * Soeren Gebbert soerengebbert@gmx.de
  7. * 08 23 2005 Berlin
  8. * PURPOSE: Converts raster maps into the VTK-Ascii format
  9. *
  10. * COPYRIGHT: (C) 2005 by the GRASS Development Team
  11. *
  12. * This program is free software under the GNU General Public
  13. * License (>=v2). Read the file COPYING that comes with GRASS
  14. * for details.
  15. *
  16. *****************************************************************************/
  17. #ifndef __R_OUT_VTK_GLOBALDEFS_H__
  18. #define __R_OUT_VTK_GLOBALDEFS_H__
  19. #define QUADS 0
  20. #define TRIANGLE_STRIPS 1
  21. #define VERTICES 2
  22. extern double x_extent;
  23. extern double y_extent;
  24. #endif