1234567891011121314151617181920212223242526272829303132333435363738 |
- /****************************************************************************
- *
- * MODULE: r3.out.vtk
- *
- * AUTHOR(S): Original author
- * Soeren Gebbert soerengebbert at gmx de
- * 27 Feb 2006 Berlin
- * PURPOSE: Converts 3D raster maps (RASTER3D) into the VTK-Ascii format
- *
- * COPYRIGHT: (C) 2005 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- *****************************************************************************/
- #ifndef __R_OUT_VTK_PARAMETERS_H__
- #define __R_OUT_VTK_PARAMETERS_H__
- /** Parameters and global variables ******************************************/
- typedef struct
- {
- struct Option *input, *output, *rgbmaps, *vectormaps, *null_val, *top,
- *bottom, *decimals, *elevscale;
- struct Flag *mask, *point, *origin, *structgrid, *coorcorr, *scalell;
- /*struct Flag *xml; *//*maybe xml support in the future */
- } paramType;
- /*global structs */
- extern paramType param; /*Parameters */
- /*prototype */
- void set_params(void);
- #endif
|