blob: cb7cadd4010f232106af26d44ac8818d757e73ba (
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
41
42
43
44
45
46
|
#pragma once
#include "angle.h"
class circle_group_t {
public:
bool is_reflection;
double x;
circle_group_t() : is_reflection(false), x(0) {}
circle_group_t(bool x, double y) : is_reflection(x), x(y) {}
angle_t act(const angle_t& theta) const {
if (is_reflection) {
return angle_t(fmod(2 * M_PI + x - theta.x, 2 * M_PI));
} else {
return angle_t(fmod(x + theta.x, 2 * M_PI));
}
}
circle_group_t act(const circle_group_t& r) const {
if (is_reflection) {
return circle_group_t(!r.is_reflection, fmod(2 * M_PI + x - r.x, 2 * M_PI));
} else {
return circle_group_t(r.is_reflection, fmod(x + r.x, 2 * M_PI));
}
}
angle_t act_inverse(const angle_t& theta) const {
if (is_reflection) {
return act(theta);
} else {
return angle_t(fmod(2 * M_PI + theta.x - x, 2 * M_PI));
}
}
circle_group_t act_inverse(const circle_group_t& r) const {
if (is_reflection) {
return act(r);
} else {
return circle_group_t(r.is_reflection, fmod(2 * M_PI + r.x - x, 2 * M_PI));
}
}
};
|