-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle negative security margin #312
Handle negative security margin #312
Conversation
And starts to add feature for inflating the shapes or adding support for inflated support function
Only the supported meshes are now accounted
6572885
to
c2b53fa
Compare
c2b53fa
to
dab4323
Compare
This PR is big and not easy to review. Before reviewing, I would prefer to have an overview of the theoretical aspects. If no, maybe we should write it down somewhere. It does not have to be very detailed but it is worth explaining:
|
Yes, I do agree it is big, but it was needed in fact. Finally, the solution is to compute the penetration distance and subtract the negative margin to collect or not a collision. |
They were related to shape deflations
May I merge this PR? |
On the algorithmic side, there is still something that puzzles me. Consider two objects A and B. A is made of 2 triangles (A1 and A2) in the same plane. B is a single triangle. Let m < 0 be the security margin. There are cases where |
Currently, the notion of penetration is only valid for convex volumes. |
So you should not allow negative security margin for BVH models. |
Yes, good point. I will add this check then. |
@jmirabel In fact, this is already done ;) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For me the PR looks good. It has a lot of commits because @jcarpent tested the deflation idea which might be useful for later. But in the end, the negative security margin doesn't change anything fundamental in the code. The security margin is simply subtracted to the distance computed by GJK/EPA. The deflation idea might be interesting to explore in the future to avoid calling EPA?
2e627e6
to
0d74ab8
Compare
An interesting idea indeed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the very long delay. I'm very busy at the moment. I won't be able to do a thorough review in a reasonable time so I stick to a overall look at it.
Thanks for the hard work.
On an organization point of view, I'm wondering if there is any good way of making PRs in this project easier to review. Some ideas :
- avoid reformatting changes for big PR. We can leave them either for a commit pushed after review and before merge or leave for another PR. They make it very hard to focus on important changes.
- put some github comment in the code that requires special attention.
- try to split core changes and cosmetic / convenience changes.
PS: This discussion can probably go in matrix instead.
For primitive shapes that are not meshes, it is rather easy to achieve deflation and EPA is particularly bad for them so this could be done in a first iteration. |
Thanks for the feedback. |
I do agree an all these points. As usual, the main issue is time to order contributions. |
No description provided.