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
use crate::math::{Isometry, Point};
use crate::shape::Plane;
use crate::shape::SupportMap;
use na::{self, RealField};
pub fn distance_plane_support_map<N: RealField, G: ?Sized + SupportMap<N>>(
mplane: &Isometry<N>,
plane: &Plane<N>,
mother: &Isometry<N>,
other: &G,
) -> N {
let plane_normal = mplane * plane.normal;
let plane_center = Point::from(mplane.translation.vector);
let deepest = other.support_point_toward(mother, &-plane_normal);
let distance = plane_normal.dot(&(plane_center - deepest));
if distance < na::zero() {
-distance
} else {
na::zero()
}
}
pub fn distance_support_map_plane<N: RealField, G: ?Sized + SupportMap<N>>(
mother: &Isometry<N>,
other: &G,
mplane: &Isometry<N>,
plane: &Plane<N>,
) -> N {
distance_plane_support_map(mplane, plane, mother, other)
}