aboutsummaryrefslogtreecommitdiff
path: root/src/geometry/polygonal_feature_map.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-10-19 16:51:40 +0200
committerCrozet Sébastien <developer@crozet.re>2020-10-19 16:52:08 +0200
commit947c4813c9666fd8215743de298fe17780fa3ef2 (patch)
tree52bd4c5415797a98809d3e948c4a4d9aa94a1b5a /src/geometry/polygonal_feature_map.rs
parentfaf3e7e0f7f2b528da99343f9a3f8ce2b8fa6876 (diff)
downloadrapier-947c4813c9666fd8215743de298fe17780fa3ef2.tar.gz
rapier-947c4813c9666fd8215743de298fe17780fa3ef2.tar.bz2
rapier-947c4813c9666fd8215743de298fe17780fa3ef2.zip
Complete the pfm/pfm contact generator.
Diffstat (limited to 'src/geometry/polygonal_feature_map.rs')
-rw-r--r--src/geometry/polygonal_feature_map.rs36
1 files changed, 29 insertions, 7 deletions
diff --git a/src/geometry/polygonal_feature_map.rs b/src/geometry/polygonal_feature_map.rs
index 8b047fc..70be5d0 100644
--- a/src/geometry/polygonal_feature_map.rs
+++ b/src/geometry/polygonal_feature_map.rs
@@ -32,6 +32,20 @@ impl PolygonalFeatureMap for Cuboid {
impl PolygonalFeatureMap for Cylinder {
fn local_support_feature(&self, dir: &Unit<Vector<f32>>, out_features: &mut PolyhedronFace) {
+ // About feature ids.
+ // At all times, we consider our cylinder to be approximated as follows:
+ // - The curved part is approximated by a single segment.
+ // - Each flat cap of the cylinder is approximated by a square.
+ // - The curved-part segment has a feature ID of 0, and its endpoint with negative
+ // `y` coordinate has an ID of 1.
+ // - The bottom cap has its vertices with feature ID of 1,3,5,7 (in counter-clockwise order
+ // when looking at the cap with an eye looking towards +y).
+ // - The bottom cap has its four edge feature IDs of 2,4,6,8, in counter-clockwise order.
+ // - The bottom cap has its face feature ID of 9.
+ // - The feature IDs of the top cap are the same as the bottom cap to which we add 10.
+ // So its vertices have IDs 11,13,15,17, its edges 12,14,16,18, and its face 19.
+ // - Note that at all times, one of each cap's vertices are the same as the curved-part
+ // segment endpoints.
let dir2 = Vector2::new(dir.x, dir.z)
.try_normalize(f32::default_epsilon())
.unwrap_or(Vector2::x());
@@ -45,10 +59,10 @@ impl PolygonalFeatureMap for Cylinder {
);
out_features.vertices[1] =
Point::new(dir2.x * self.radius, self.half_height, dir2.y * self.radius);
- out_features.eids = [0, 0, 0, 0]; // FIXME
- out_features.fid = 1;
+ out_features.eids = [0, 0, 0, 0];
+ out_features.fid = 0;
out_features.num_vertices = 2;
- out_features.vids = [0, 1, 1, 1]; // FIXME
+ out_features.vids = [1, 11, 11, 11];
} else {
// We return a square approximation of the cylinder cap.
let y = self.half_height.copysign(dir.y);
@@ -56,10 +70,18 @@ impl PolygonalFeatureMap for Cylinder {
out_features.vertices[1] = Point::new(-dir2.y * self.radius, y, dir2.x * self.radius);
out_features.vertices[2] = Point::new(-dir2.x * self.radius, y, -dir2.y * self.radius);
out_features.vertices[3] = Point::new(dir2.y * self.radius, y, -dir2.x * self.radius);
- out_features.eids = [0, 1, 2, 3]; // FIXME
- out_features.fid = if dir.y < 0.0 { 0 } else { 2 };
- out_features.num_vertices = 4;
- out_features.vids = [0, 1, 2, 3]; // FIXME
+
+ if dir.y < 0.0 {
+ out_features.eids = [2, 4, 6, 8];
+ out_features.fid = 9;
+ out_features.num_vertices = 4;
+ out_features.vids = [1, 3, 5, 7];
+ } else {
+ out_features.eids = [12, 14, 16, 18];
+ out_features.fid = 19;
+ out_features.num_vertices = 4;
+ out_features.vids = [11, 13, 15, 17];
+ }
}
}
}