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
use parry3d_f64::bounding_volume::BoundingVolume as _;
use super::{Point, Vector};
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
#[repr(C)]
pub struct Aabb<const D: usize> {
pub min: Point<D>,
pub max: Point<D>,
}
impl Aabb<2> {
pub fn from_points(points: impl IntoIterator<Item = Point<2>>) -> Self {
let points: Vec<_> =
points.into_iter().map(|point| point.to_na()).collect();
parry2d_f64::bounding_volume::AABB::from_points(&points).into()
}
pub fn from_parry(aabb: parry2d_f64::bounding_volume::AABB) -> Self {
Self {
min: aabb.mins.into(),
max: aabb.maxs.into(),
}
}
}
impl Aabb<3> {
pub fn from_points(points: impl IntoIterator<Item = Point<3>>) -> Self {
let points: Vec<_> =
points.into_iter().map(|point| point.to_na()).collect();
parry3d_f64::bounding_volume::AABB::from_points(&points).into()
}
pub fn from_parry(aabb: parry3d_f64::bounding_volume::AABB) -> Self {
Self {
min: aabb.mins.into(),
max: aabb.maxs.into(),
}
}
pub fn to_parry(self) -> parry3d_f64::bounding_volume::AABB {
parry3d_f64::bounding_volume::AABB {
mins: self.min.to_na(),
maxs: self.max.to_na(),
}
}
pub fn vertices(&self) -> [Point<3>; 8] {
self.to_parry().vertices().map(|vertex| vertex.into())
}
pub fn center(&self) -> Point<3> {
self.to_parry().center().into()
}
pub fn size(&self) -> Vector<3> {
self.to_parry().extents().into()
}
pub fn include_point(self, point: &Point<3>) -> Self {
let mut aabb = self.to_parry();
aabb.take_point(point.to_na());
Self::from_parry(aabb)
}
pub fn merged(&self, other: &Self) -> Self {
self.to_parry().merged(&other.to_parry()).into()
}
}
impl From<parry2d_f64::bounding_volume::AABB> for Aabb<2> {
fn from(aabb: parry2d_f64::bounding_volume::AABB) -> Self {
Self::from_parry(aabb)
}
}
impl From<parry3d_f64::bounding_volume::AABB> for Aabb<3> {
fn from(aabb: parry3d_f64::bounding_volume::AABB) -> Self {
Self::from_parry(aabb)
}
}