Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/query/contact/contact_composite_shape_shape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ where
G1: ?Sized + CompositeShape,
{
CompositeShapeRef(g1)
.contact_with_shape(dispatcher, &pose12.inverse(), g2, prediction)
.contact_with_shape(dispatcher, &pose12, g2, prediction)
.map(|c| c.1)
}

Expand Down
2 changes: 1 addition & 1 deletion src/query/gjk/gjk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub enum GJKResult {
/// The absolute tolerance used by the GJK algorithm.
pub fn eps_tol() -> Real {
let _eps = crate::math::DEFAULT_EPSILON;
_eps * 10.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert this

_eps * 100.0
}

/// Projects the origin on the boundary of the given shape.
Expand Down