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
use super::{Dimensions, Direction, EdgeIntersection, IntersectionMatrix, Label};
use super::{LineIntersection, LineIntersector, RobustLineIntersector};
use crate::{Coordinate, GeoFloat, Line};
use std::collections::BTreeSet;
#[derive(Debug)]
pub(crate) struct Edge<F: GeoFloat> {
coords: Vec<Coordinate<F>>,
is_isolated: bool,
edge_intersections: BTreeSet<EdgeIntersection<F>>,
label: Label,
}
impl<F: GeoFloat> Edge<F> {
pub(crate) fn new(mut coords: Vec<Coordinate<F>>, label: Label) -> Edge<F> {
assert!(!coords.is_empty(), "Can't add empty edge");
coords.shrink_to_fit();
Edge {
coords,
label,
is_isolated: true,
edge_intersections: BTreeSet::new(),
}
}
pub(crate) fn label(&self) -> &Label {
&self.label
}
pub(crate) fn label_mut(&mut self) -> &mut Label {
&mut self.label
}
pub fn coords(&self) -> &[Coordinate<F>] {
&self.coords
}
pub fn is_isolated(&self) -> bool {
self.is_isolated
}
pub fn mark_as_unisolated(&mut self) {
self.is_isolated = false;
}
pub fn edge_intersections(&self) -> &BTreeSet<EdgeIntersection<F>> {
&self.edge_intersections
}
pub fn edge_intersections_mut(&mut self) -> &mut BTreeSet<EdgeIntersection<F>> {
&mut self.edge_intersections
}
pub fn add_edge_intersection_list_endpoints(&mut self) {
let max_segment_index = self.coords().len() - 1;
let first_coord = self.coords()[0];
let max_coord = self.coords()[max_segment_index];
self.edge_intersections_mut()
.insert(EdgeIntersection::new(first_coord, 0, F::zero()));
self.edge_intersections_mut().insert(EdgeIntersection::new(
max_coord,
max_segment_index,
F::zero(),
));
}
pub fn is_closed(&self) -> bool {
self.coords().first() == self.coords().last()
}
pub fn add_intersections(
&mut self,
intersection: LineIntersection<F>,
line: Line<F>,
segment_index: usize,
) {
match intersection {
LineIntersection::SinglePoint { intersection, .. } => {
self.add_intersection(intersection, line, segment_index);
}
LineIntersection::Collinear { intersection } => {
self.add_intersection(intersection.start, line, segment_index);
self.add_intersection(intersection.end, line, segment_index);
}
}
}
pub fn add_intersection(
&mut self,
intersection_coord: Coordinate<F>,
line: Line<F>,
segment_index: usize,
) {
let mut normalized_segment_index = segment_index;
let mut distance = RobustLineIntersector::compute_edge_distance(intersection_coord, line);
let next_segment_index = normalized_segment_index + 1;
if next_segment_index < self.coords.len() {
let next_coord = self.coords[next_segment_index];
if intersection_coord == next_coord {
normalized_segment_index = next_segment_index;
distance = F::zero();
}
}
self.edge_intersections.insert(EdgeIntersection::new(
intersection_coord,
normalized_segment_index,
distance,
));
}
pub fn update_intersection_matrix(label: &Label, intersection_matrix: &mut IntersectionMatrix) {
intersection_matrix.set_at_least_if_in_both(
label.position(0, Direction::On),
label.position(1, Direction::On),
Dimensions::OneDimensional,
);
if label.is_area() {
intersection_matrix.set_at_least_if_in_both(
label.position(0, Direction::Left),
label.position(1, Direction::Left),
Dimensions::TwoDimensional,
);
intersection_matrix.set_at_least_if_in_both(
label.position(0, Direction::Right),
label.position(1, Direction::Right),
Dimensions::TwoDimensional,
);
}
}
}