-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathQUIKGRID.H
More file actions
37 lines (32 loc) · 808 Bytes
/
QUIKGRID.H
File metadata and controls
37 lines (32 loc) · 808 Bytes
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
#ifndef QUIKGRID_H
#define QUIKGRID_H
//#define max(a,b) (((a)>(b))?(a):(b))
//#define min(a,b) (((a)<(b))?(a):(b))
struct ContourOptionsType
{ int contours,
marks,
xyplot,
numbers,
comments,
grid,
hiddengrid,
lines,
blackwhite,
showmarks,
showcorners,
pointnumber,
threedaxes,
labelcontours; };
enum ContourType {ThreeD, TwoD, DXFoutput } ; // Used by DoLineTo.
extern int DoGenerateGrid;
extern HWND hGridgenDlgBox;
extern SurfaceGrid Zgrid;
extern ScatData ScatterData;
extern const int MaxContourLines;
extern int NumberOfContours;
extern int PenHighLite;
extern HINSTANCE hInst ;
extern float Turn, Tilt, Aspect, Projection;
extern char szTitle[];
extern int LatLonData;
#endif