parameters.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /****************************************************************************
  2. *
  3. * MODULE: r3.out.vtk
  4. *
  5. * AUTHOR(S): Original author
  6. * Soeren Gebbert soerengebbert at gmx de
  7. * 27 Feb 2006 Berlin
  8. * PURPOSE: Converts 3D raster maps (RASTER3D) 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_PARAMETERS_H__
  18. #define __R_OUT_VTK_PARAMETERS_H__
  19. /** Parameters and global variables ******************************************/
  20. typedef struct
  21. {
  22. struct Option *input, *output, *rgbmaps, *vectormaps, *null_val, *top,
  23. *bottom, *decimals, *elevscale;
  24. struct Flag *mask, *point, *origin, *structgrid, *coorcorr, *scalell;
  25. /*struct Flag *xml; *//*maybe xml support in the future */
  26. } paramType;
  27. /*global structs */
  28. extern paramType param; /*Parameters */
  29. /*prototype */
  30. void set_params(void);
  31. #endif