writeVTKHead.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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 __R3_OUT_VTK_WRITE_HEAD_H__
  18. #define __R3_OUT_VTK_WRITE_HEAD_H__
  19. /*write the vtk structured point header */
  20. void write_vtk_structured_point_header(FILE * fp, char *vtkFile,
  21. RASTER3D_Region region, int dp,
  22. double scale);
  23. /*write the vtk structured grid header */
  24. void write_vtk_structured_grid_header(FILE * fp, char *vtkFile,
  25. RASTER3D_Region region);
  26. /*write the vtk unstructured grid header */
  27. void write_vtk_unstructured_grid_header(FILE * fp, char *vtkFile,
  28. RASTER3D_Region region);
  29. #endif