Skip to content
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

Merged
merged 52 commits into from
Jul 7, 2022

Conversation

jcarpent
Copy link
Contributor

No description provided.

And starts to add feature for inflating the shapes or adding support for inflated support function
Only the supported meshes are now accounted
@jcarpent jcarpent force-pushed the topic/square-dist-lower-bound branch 2 times, most recently from 6572885 to c2b53fa Compare June 24, 2022 15:41
@jcarpent jcarpent force-pushed the topic/square-dist-lower-bound branch from c2b53fa to dab4323 Compare June 24, 2022 15:56
@jcarpent jcarpent marked this pull request as ready for review June 28, 2022 12:06
@jmirabel
Copy link
Contributor

This PR is big and not easy to review. Before reviewing, I would prefer to have an overview of the theoretical aspects.
Is it already written somewhere ?

If no, maybe we should write it down somewhere. It does not have to be very detailed but it is worth explaining:

  • how BV checks behaves
  • the main difference(s) with positive only security margin.

@jcarpent
Copy link
Contributor Author

Yes, I do agree it is big, but it was needed in fact.
Briefly, the first idea was to shrink primitives to account for the negative security margins. This was in fact not needed.
I kept the inflate property for basic primitives as it can be useful for extra users (such as us).

Finally, the solution is to compute the penetration distance and subtract the negative margin to collect or not a collision.
I've added it with a large set of testing to correctly check the values. Following this idea, I've adapted the AABB and other used BVs to account for negative margins in overlap functions.

They were related to shape deflations
@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 4, 2022

May I merge this PR?

@jmirabel
Copy link
Contributor

jmirabel commented Jul 5, 2022

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 d(A1, B) > m and d(A2, B) > m but d(A, B) < m. Do you address those cases ?

@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 5, 2022

Currently, the notion of penetration is only valid for convex volumes.

@jmirabel
Copy link
Contributor

jmirabel commented Jul 5, 2022

So you should not allow negative security margin for BVH models.

@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 5, 2022

Yes, good point. I will add this check then.

@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 5, 2022

Yes, good point. I will add this check then.

@jmirabel In fact, this is already done ;)

Copy link
Contributor

@lmontaut lmontaut left a 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?

@jcarpent jcarpent force-pushed the topic/square-dist-lower-bound branch from 2e627e6 to 0d74ab8 Compare July 5, 2022 19:13
@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 5, 2022

The deflation idea might be interesting to explore in the future to avoid calling EPA?

An interesting idea indeed.

Copy link
Contributor

@jmirabel jmirabel left a 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.

@jmirabel
Copy link
Contributor

jmirabel commented Jul 7, 2022

The deflation idea might be interesting to explore in the future to avoid calling EPA?

An interesting idea indeed.

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.
For other meshes, it isn't trivial at all.

@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 7, 2022

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.

Thanks for the feedback.

@jcarpent
Copy link
Contributor Author

jcarpent commented Jul 7, 2022

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.

I do agree an all these points. As usual, the main issue is time to order contributions.
Next time I will try to split into various PRs to enhance the readibility.

@jcarpent jcarpent merged commit d3b197a into coal-library:devel Jul 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants