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
use crate::math::{Isometry, Point, Vector};
use crate::shape::{ConvexPolygonalFeature, SupportMap};
use na::{RealField, Unit};
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum FeatureId {
Vertex(usize),
#[cfg(feature = "dim3")]
Edge(usize),
Face(usize),
Unknown,
}
impl FeatureId {
pub fn unwrap_vertex(self) -> usize {
match self {
FeatureId::Vertex(id) => id,
_ => panic!("The feature id does not identify a vertex."),
}
}
#[cfg(feature = "dim3")]
pub fn unwrap_edge(self) -> usize {
match self {
FeatureId::Edge(id) => id,
_ => panic!("The feature id does not identify an edge."),
}
}
pub fn unwrap_face(self) -> usize {
match self {
FeatureId::Face(id) => id,
_ => panic!("The feature id does not identify a face."),
}
}
}
pub trait ConvexPolyhedron<N: RealField>: SupportMap<N> {
fn vertex(&self, id: FeatureId) -> Point<N>;
fn face(&self, id: FeatureId, face: &mut ConvexPolygonalFeature<N>);
#[cfg(feature = "dim3")]
fn edge(&self, id: FeatureId) -> (Point<N>, Point<N>, FeatureId, FeatureId);
fn feature_normal(&self, feature: FeatureId) -> Unit<Vector<N>>;
fn support_face_toward(
&self,
transform: &Isometry<N>,
dir: &Unit<Vector<N>>,
out: &mut ConvexPolygonalFeature<N>,
);
fn support_feature_toward(
&self,
transform: &Isometry<N>,
dir: &Unit<Vector<N>>,
_angle: N,
out: &mut ConvexPolygonalFeature<N>,
);
fn support_feature_id_toward(&self, local_dir: &Unit<Vector<N>>) -> FeatureId;
}