aboutsummaryrefslogtreecommitdiff
path: root/tool_src/makeodt/makeodt.h
blob: 62fad851c1fa99bfa5a0494390ed7e5a0badb10a (plain)
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
39
40
/*
 * makeodt.h
 */

#ifndef _MAKEODT_H_
#define _MAKEODT_H_


// windows specific includes
#ifdef _MSC_VER

	#include <windows.h>
	#include <commctrl.h>
	#include <commdlg.h>
	#include <afxres.h>
	#include <richedit.h>
	#include "resource.h"

	#define PATH_MAX _MAX_PATH

#endif

// opengl specific includes
//#include <gl\gl.h>
//#include <gl\glu.h>


// epsilon area for width of "infinitely thin" plane
#define SCALAR_EPS 0.00000005

// epsilon area for point on line determination
//#define POINT_ON_LINESEG_EPS 0.00000001
#define POINT_ON_LINESEG_EPS 0.02

// epsilon area for merging of vertices
#define VERTEX_MERGE_EPS 0.00000005



#endif // _MAKEODT_H_