forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriteVTKHead.h
33 lines (29 loc) · 1.13 KB
/
writeVTKHead.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/****************************************************************************
*
* 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 __R3_OUT_VTK_WRITE_HEAD_H__
#define __R3_OUT_VTK_WRITE_HEAD_H__
/*write the vtk structured point header */
void write_vtk_structured_point_header(FILE * fp, char *vtkFile,
RASTER3D_Region region, int dp,
double scale);
/*write the vtk structured grid header */
void write_vtk_structured_grid_header(FILE * fp, char *vtkFile,
RASTER3D_Region region);
/*write the vtk unstructured grid header */
void write_vtk_unstructured_grid_header(FILE * fp, char *vtkFile,
RASTER3D_Region region);
#endif