parameters.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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_PARAMETERS_H__
  18. #define __R_OUT_VTK_PARAMETERS_H__
  19. struct Option;
  20. struct Flag;
  21. typedef struct
  22. {
  23. struct Option *input, *output, *elevationmap, *null_val, *elevscale,
  24. *elev, *rgbmaps, *vectmaps, *decimals;
  25. struct Flag *usestruct, *usetriangle, *usevertices, *origin, *point, *coorcorr; /*struct Flag *mask; 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