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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
use crate::intersections::IntersectsWith;
use crate::quadtree::Point;
use std::ops::Add;
#[derive(Debug, PartialEq, Eq, Default, Copy, Clone)]
pub struct AABB {
pub tl: Point,
pub br: Point,
}
impl AABB {
#[inline]
pub fn new(x1: i32, y1: i32, x2: i32, y2: i32) -> Self {
Self {
tl: Point::new(x1, y1),
br: Point::new(x2, y2),
}
}
}
impl IntersectsWith<AABB> for AABB {
#[inline]
fn intersects_with(&self, other: &AABB) -> bool {
let x1_max = self.tl.x.max(other.tl.x);
let x2_min = self.br.x.min(other.br.x);
let y1_max = self.tl.y.max(other.tl.y);
let y2_min = self.br.y.min(other.br.y);
let a = x1_max < x2_min;
let b = y1_max < y2_min;
let intersects = a & b;
let d_a = x1_max <= x2_min;
let d_b = y1_max <= y2_min;
let degenerate_x = (other.tl.x == other.br.x) | (self.tl.x == self.br.x);
let degenerate_y = (other.tl.y == other.br.y) | (self.tl.y == self.br.y);
let is_degenerate = degenerate_x | degenerate_y;
let d_intersects = is_degenerate & d_a & d_b;
intersects | d_intersects
}
}
impl Add for AABB {
type Output = Self;
fn add(self, rhs: Self) -> Self::Output {
let min_x = self.tl.x.min(rhs.tl.x);
let min_y = self.tl.y.min(rhs.tl.y);
let max_x = self.br.x.max(rhs.br.x);
let max_y = self.br.y.max(rhs.br.y);
AABB::new(min_x, min_y, max_x, max_y)
}
}
impl From<[i32; 4]> for AABB {
#[inline]
fn from(rect: [i32; 4]) -> Self {
Self::from(&rect)
}
}
impl From<&[i32; 4]> for AABB {
#[inline]
fn from(rect: &[i32; 4]) -> Self {
Self::new(rect[0], rect[1], rect[2], rect[3])
}
}
impl Into<[i32; 4]> for AABB {
fn into(self) -> [i32; 4] {
[self.tl.x, self.tl.y, self.br.x, self.br.y]
}
}
impl AsRef<[i32; 4]> for AABB {
fn as_ref(&self) -> &[i32; 4] {
let ptr = self as *const _ as *const [i32; 4];
unsafe { ptr.as_ref() }.unwrap()
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn aabb_is_16_bytes() {
assert_eq!(std::mem::size_of::<AABB>(), 16);
}
#[test]
fn from_works() {
let aabb = AABB::from([1, 2, 3, 4]);
assert_eq!(aabb.tl.x, 1);
assert_eq!(aabb.tl.y, 2);
assert_eq!(aabb.br.x, 3);
assert_eq!(aabb.br.y, 4);
}
#[test]
fn from_ref_works() {
let aabb = AABB::from(&[1, 2, 3, 4]);
assert_eq!(aabb.tl.x, 1);
assert_eq!(aabb.tl.y, 2);
assert_eq!(aabb.br.x, 3);
assert_eq!(aabb.br.y, 4);
}
#[test]
fn as_ref_works() {
let aabb = AABB::new(1, 2, 3, 4);
let array: &[i32; 4] = aabb.as_ref();
for i in 1..=4 {
assert_eq!(array[i as usize - 1], i);
}
}
#[test]
fn intersects_with_self_works() {
let a = AABB::new(0, 0, 1, 1);
assert!(a.intersects_with(&a));
}
#[test]
fn intersects_when_partial_overlap_works() {
let a = AABB::new(0, 0, 2, 2);
let b = AABB::new(1, 1, 3, 3);
assert!(a.intersects_with(&b));
assert!(b.intersects_with(&a));
let a = AABB::new(0, 0, 2, 2);
let b = AABB::new(-1, -1, 1, 1);
assert!(a.intersects_with(&b));
assert!(b.intersects_with(&a));
let a = AABB::new(0, 0, 2, 2);
let b = AABB::new(-1, 1, 1, 2);
assert!(a.intersects_with(&b));
assert!(b.intersects_with(&a));
}
#[test]
fn intersects_when_not_overlapping_works() {
let a = AABB::new(0, 0, 2, 2);
let b = AABB::new(2, 0, 3, 3);
assert!(!a.intersects_with(&b));
assert!(!b.intersects_with(&a));
let c = AABB::new(0, 0, 2, 2);
let d = AABB::new(10, 10, 12, 12);
assert!(!c.intersects_with(&d));
assert!(!d.intersects_with(&c));
}
#[test]
fn intersects_when_degenerate_works() {
let a = AABB::new(-1, 0, 0, -1);
let b = AABB::new(1, 1, 0, 1);
assert!(!a.intersects_with(&b));
assert!(!a.intersects_with(&a));
assert!(!b.intersects_with(&b));
}
#[test]
fn intersects_rect_point_works() {
let point = AABB::new(3, 3, 3, 3);
let covering_rect = AABB::new(-10, -10, 10, 10);
assert!(covering_rect.intersects_with(&point));
let other_rect = AABB::new(-10, -10, 0, 0);
assert!(!other_rect.intersects_with(&point));
}
#[test]
fn intersects_line_point_works() {
let line = AABB::new(-10, 0, 10, 0);
let point = AABB::new(1, 0, 1, 0);
assert!(line.intersects_with(&point));
let boundary_point = AABB::new(10, 0, 10, 0);
assert!(line.intersects_with(&boundary_point));
}
#[test]
fn intersects_point_point_works() {
let point = AABB::new(-1, -1, -1, -1);
assert!(point.intersects_with(&point));
}
}