-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsparksieve2.hpp
69 lines (58 loc) · 2.3 KB
/
sparksieve2.hpp
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
// SPDX-FileCopyrightText: 2011-2012 Tasos Varoudis
//
// SPDX-License-Identifier: GPL-3.0-or-later
// This is my code to make a set of axial lines from a set of boundary lines
#pragma once
#include "genlib/line4f.hpp"
#include <cstdint>
#include <float.h>
#include <list>
#include <map>
#include <vector>
class sparkSieve2 {
public:
struct sparkZone2 {
double start;
double end;
bool remove;
private:
[[maybe_unused]] unsigned _padding0 : 3 * 8;
[[maybe_unused]] unsigned _padding1 : 4 * 8;
public:
sparkZone2(double s = 0.0, double e = 0.0)
: start(s), end(e), remove(false), _padding0(0), _padding1(0) {}
// to allow ordered lists:
friend bool operator==(const sparkZone2 &a, const sparkZone2 &b);
friend bool operator!=(const sparkZone2 &a, const sparkZone2 &b);
friend bool operator<(const sparkZone2 &a, const sparkZone2 &b);
friend bool operator>(const sparkZone2 &a, const sparkZone2 &b);
};
private:
Point2f m_centre;
double m_maxdist; // for creating graphs that only see out a certain distance: set to -1.0 for
// infinite
std::vector<sparkZone2> m_blocks;
public:
std::list<sparkZone2> gaps;
public:
sparkSieve2(const Point2f ¢re, double maxdist = -1.0);
~sparkSieve2();
bool testblock(const Point2f &point, const std::vector<Line4f> &lines, double tolerance);
void block(const std::vector<Line4f> &lines, int q);
void collectgarbage();
double tanify(const Point2f &point, int q);
//
bool hasGaps() const { return (!gaps.empty()); }
};
inline bool operator==(const sparkSieve2::sparkZone2 &a, const sparkSieve2::sparkZone2 &b) {
return (a.start == b.start && a.end == b.end);
}
inline bool operator!=(const sparkSieve2::sparkZone2 &a, const sparkSieve2::sparkZone2 &b) {
return (a.start != b.start || a.end != b.end);
}
inline bool operator<(const sparkSieve2::sparkZone2 &a, const sparkSieve2::sparkZone2 &b) {
return (a.start == b.start) ? (a.end > b.end) : (a.start < b.start);
}
inline bool operator>(const sparkSieve2::sparkZone2 &a, const sparkSieve2::sparkZone2 &b) {
return (a.start == b.start) ? (a.end < b.end) : (a.start > b.start);
}