-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGS_GRID.H
More file actions
38 lines (30 loc) · 1.44 KB
/
GS_GRID.H
File metadata and controls
38 lines (30 loc) · 1.44 KB
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
34
35
36
37
38
/*************************************************************************/
/* GS_GRID.H */
/*************************************************************************/
#ifndef _gs_grid_h
#define _gs_grid_h 1
#ifndef _gs_list_h
#include "gs_list.h"
#endif
// Griglia
int gs_DisplayGridBorder(void);
int gs_DisplayGridPts(void);
int gs_DisplayGridCells(void);
int gs_DisplayGridContours(void);
int gs_GridSpatialInterpolationIDW(void);
int gs_ObjectsOnGrid(void);
int gs_SetAttribEntityFromGrid(void);
int gs_InitIterpolateDisplayContoursGrid(void);
int gs_DisplayValleyOrRidge(void);
DllExport int gsc_getFASList4ContoursGrid(int nIntervals, double MinValue, double MaxValue,
C_COLOR &StartColor, C_COLOR &EndColor,
const TCHAR *LayerPrefix,
C_FAS_LIST &FAS_list);
DllExport int gsc_getFASList4ContoursGrid(double EveryStep, double MinValue, double MaxValue,
C_COLOR &StartColor, C_COLOR &EndColor,
const TCHAR *LayerPrefix,
C_FAS_LIST &FAS_list);
int gsc_GridEvid(C_CGRID *pCls, C_LINK_SET &ResultLS,
bool ByPoints, C_STRING &AttribZ,
C_FAS *pFAS = NULL, int Mode = PREVIEW);
#endif