forked from therion/therion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thdb2dlp.h
91 lines (68 loc) · 2.17 KB
/
thdb2dlp.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/**
* @file thdb2dlp.h
* 2D line point.
*/
/* Copyright (C) 2000 Stacho Mudrak
*
* $Date: $
* $RCSfile: $
* $Revision: $
*
* --------------------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* --------------------------------------------------------------------
*/
#ifndef thdb2dlp_h
#define thdb2dlp_h
#include "thdb2dpt.h"
#include <list>
/**
* Line point tags.
*/
enum {
TT_LINEPT_TAG_NONE = 0,
TT_LINEPT_TAG_ORIENT = 1,
TT_LINEPT_TAG_SIZE = 2,
TT_LINEPT_TAG_LSIZE = 4,
TT_LINEPT_TAG_RSIZE = 8,
TT_LINEPT_TAG_ALTITUDE = 16,
TT_LINEPT_TAG_GRADIENT = 16,
TT_LINEPT_TAG_DIRECTION = 16,
};
/**
* 2D point class.
*/
class thdb2dlp {
public:
thdb2dlp * nextlp, ///< Next line point.
* prevlp; ///< Previous line point.
thdb2dpt * point, ///< The point it self.
* cp1, ///< Control point 1.
* cp2; ///< Control point 2.
int subtype, ///< Line subtype.
smooth, smooth_orig, ///< Whether line is smooth in given point.
adjust; ///< line point adjustment
const char * mark; ///< Line point mark.
unsigned tags; ///< Line point tags.
double orient,rsize,lsize; ///< ???
thdb2dlp(); ///< Standard constructor.
void export_prevcp_mp(class thexpmapmpxs * out);
void export_nextcp_mp(class thexpmapmpxs * out);
bool get_nextcp(double & dx, double & dy);
bool get_prevcp(double & dx, double & dy);
double get_rotation();
};
typedef std::list <thdb2dlp> thdb2dlp_list; ///< Line points list.
#endif