-
Notifications
You must be signed in to change notification settings - Fork 0
/
field.h
94 lines (74 loc) · 1.86 KB
/
field.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
90
91
92
93
94
#ifndef FIELD_H
#define FIELD_H
#include <QString>
class FieldLine {
public:
FieldLine(QString name_,
double p1_x_,
double p1_y_,
double p2_x_,
double p2_y_,
double thickness_);
private:
// Disable assignment operator.
const FieldLine& operator=(const FieldLine& other);
public:
QString name;
double p1_x;
double p1_y;
double p2_x;
double p2_y;
double thickness;
FieldLine(const FieldLine& other);
FieldLine(const QString &marking_name);
~FieldLine();
};
class FieldCircularArc {
public:
FieldCircularArc(QString name_,
double center_x_,
double center_y_,
double radius_,
double a1_,
double a2_,
double thickness_);
private:
// Disable assignment operator.
const FieldCircularArc& operator=(const FieldCircularArc& other);
public:
QString name;
double center_x;
double center_y;
double radius;
double a1;
double a2;
double thickness;
FieldCircularArc(const FieldCircularArc& other);
FieldCircularArc(const QString &marking_name);
~FieldCircularArc();
};
class FieldTriangle {
public:
FieldTriangle(QString name_,
double p1_x_,
double p1_y_,
double p2_x_,
double p2_y_,
double p3_x_,
double p3_y_);
private:
// Disable assignment operator.
const FieldTriangle& operator=(const FieldCircularArc& other);
public:
QString name;
double p1_x;
double p1_y;
double p2_x;
double p2_y;
double p3_x;
double p3_y;
FieldTriangle(const FieldTriangle& other);
FieldTriangle(const QString &marking_name);
~FieldTriangle();
};
#endif // FIELD_H