diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /tool_src/makeodt/makeodt.h | |
| download | openparsec-main.tar.xz openparsec-main.zip | |
Diffstat (limited to 'tool_src/makeodt/makeodt.h')
| -rw-r--r-- | tool_src/makeodt/makeodt.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tool_src/makeodt/makeodt.h b/tool_src/makeodt/makeodt.h new file mode 100644 index 0000000..62fad85 --- /dev/null +++ b/tool_src/makeodt/makeodt.h @@ -0,0 +1,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_ |
