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
use crate::math::Isometry;
use na::Real;
use crate::query::Proximity;
use crate::shape::Shape;
use std::any::Any;
pub trait ProximityDetector<N: Real>: Any + Send + Sync {
fn update(
&mut self,
dispatcher: &ProximityDispatcher<N>,
ma: &Isometry<N>,
a: &Shape<N>,
mb: &Isometry<N>,
b: &Shape<N>,
margin: N,
) -> bool;
fn proximity(&self) -> Proximity;
}
pub type ProximityAlgorithm<N> = Box<ProximityDetector<N>>;
pub trait ProximityDispatcher<N>: Any + Send + Sync {
fn get_proximity_algorithm(&self, a: &Shape<N>, b: &Shape<N>) -> Option<ProximityAlgorithm<N>>;
}