-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.cpp
193 lines (174 loc) · 6.14 KB
/
example.cpp
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
//
// Created by sba on 06.07.21.
//
#include <iostream>
#include <numeric>
#include "dual_number.h"
#include "vector.h"
#include "unit_line.h"
#include "dual_frame.h"
#include "ccc.h"
#include "random.h"
using namespace DualNumberAlgebra;
DualNumber toDeg(const DualNumber &a) {
return DualNumber(a.real()/M_PI*180.0, a.dual());
}
struct DataSet {
UnitLine a;
UnitLine b;
UnitLine c;
DualFrame zp;
DualFrame goal;
DataSet(UnitLine a, UnitLine b, UnitLine c, DualFrame zp, DualFrame goal)
: a(std::move(a)), b(std::move(b)), c(std::move(c)), zp(std::move(zp)), goal(std::move(goal)) {}
};
// Could be done also as a config file but that would have to be read somehow
// I want to reduce the dependencies and this is only meant as examples especially for development
// Create an named example with three lines, a zero posture and a goal frame
std::unordered_map<std::string, DataSet> examples = {
{"coincide", DataSet(
UnitLine(
UnitDirectionVector(0.0, 0.0, 1.0),
PointVector(0.0, 0.0, 0.0)
),
UnitLine(
UnitDirectionVector(1.0, 0.0, 0.0),
PointVector(0.0, -1.0, 0.0)
),
UnitLine(
DirectionVector(0.0, 1.0, 0.0),
PointVector(10.0, 0.0, 8.0)
),
DualFrame(
RotationMatrix(M_PI_2, M_PI_2, 0),
PointVector(10, 5, 7)
),
DualFrame(
RotationMatrix(0, 0, 0),
PointVector(15, 0, 0)
))
},
{"coincide2", DataSet(
UnitLine(
UnitDirectionVector(0.0, 0.0, 1.0),
PointVector(0.0, 0.0, 0.0)
),
UnitLine(
UnitDirectionVector(1.0, 0.0, 0.0),
PointVector(0.0, -1.0, 0.0)
),
UnitLine(
DirectionVector(0.0, 0.0, 1.0),
PointVector(5.0, 0.0, 0.0)
),
DualFrame(
RotationMatrix(0, 0, 0),
PointVector(6, 1, 0)
),
DualFrame(
RotationMatrix(0, 0, 0),
PointVector(1, 1, 0)
))
},
{"parallel", DataSet(
UnitLine(
UnitDirectionVector(0.0, 0.0, 1.0),
PointVector(0.0, 0.0, 0.0)
),
UnitLine(
UnitDirectionVector(1.0, 0.0, 0.0),
PointVector(0.0, -1.0, 0.0)
),
UnitLine(
DirectionVector(0.0, -1.0, 1.0),
PointVector(1.0, 0.0, 0.0)
),
DualFrame(
RotationMatrix(0,0,0),
PointVector(0,-1,4)
),
DualFrame(
RotationMatrix(0,0,-M_PI_4),
PointVector(4,4,0)
))
},
{"simple-parallel", DataSet(
UnitLine(
UnitDirectionVector(0.0, 0.0, 1.0),
PointVector(0.0, 0.0, 0.0)
),
UnitLine(
UnitDirectionVector(1.0, 0.0, 0.0),
PointVector(0.0, -1.0, 0.0)
),
UnitLine(
DirectionVector(0.0, 0, 1.0),
PointVector(2.0, 1.0, 0.0)
),
DualFrame(
RotationMatrix(0,0,0),
PointVector(2,0,0)
),
DualFrame(
RotationMatrix(0,0,0),
PointVector(4,4,4)
))
},
{"screwed", DataSet(
UnitLine(
UnitDirectionVector(0.0, 0.0, 1.0),
PointVector(0.0, 0.0, 0.0)
),
UnitLine(
UnitDirectionVector(1.0, 0.0, 0.0),
PointVector(0.0, -1.0, 0.0)
),
UnitLine(
DirectionVector(0.0, 1.0, 0.0),
PointVector(1.0, 0.0, 1.0)
),
DualFrame(
RotationMatrix(0,0,0),
PointVector(0,-1,4)
),
DualFrame(
RotationMatrix(M_PI_2,0,-M_PI_4),
PointVector(4,4,0)
))
},
};
void test_scenario(char * input) {
try {
// May throw an exception if the key is not existent
DataSet d = examples.at(input);
CCCMechanism ccc(d.a, d.b, d.c, d.zp);
auto solutions = ccc.inverse(d.goal);
std::cout << "To Pose: " << std::endl << d.goal << std::endl;
for (auto solution : solutions) {
std::cout << "Solution " << std::endl << " " <<
solution.phi_1 << std::endl << " " <<
solution.phi_2 << std::endl << " " <<
solution.phi_3 << std::endl;
std::cout << "yields to:" << std::endl << ccc.forward(solution) << std::endl;
}
} catch(const std::out_of_range &e) {
throw std::logic_error("Example not found");
}
}
int main(int argc, char **argv) {
try {
if (argc == 1) {
throw std::logic_error("Need an example to run");
}
test_scenario(argv[1]);
}
catch(const std::logic_error &e) {
std::cerr << e.what() << std::endl
<< "Usage: " << std::endl
<< argv[0] << " "
<< std::accumulate(examples.cbegin()++, examples.cend(), examples.cbegin()->first, [] (auto a, auto b) -> std::string {
return a + " | " + b.first;
})
<< std::endl;
}
}