Skip to content

collision check in manipulators #939

Answered by Levi-Armstrong
leiyu2023 asked this question in Q&A
Discussion options

You must be logged in to vote
  1. The way most collision checkers works it they are broken up into two phases. The first is called the broad phase and the second is called the narrow phase. The narrow phase is very expensive step which will find the distance, normal, manifold, etc., so in most application you do not want to do this unless the two shapes are within some threshold which leads me to the broad phase. The broad phase consists of check each collision objects bounding volume which is usually an axis aligned bounding box but there several different methods for this. The process of checking each shapes bounding volume box to every other box and then only perform the narrow phase if the bounding volume box interse…

Replies: 2 comments 5 replies

Comment options

You must be logged in to vote
2 replies
@Levi-Armstrong
Comment options

@leiyu2023
Comment options

Answer selected by leiyu2023
Comment options

You must be logged in to vote
3 replies
@leiyu2023
Comment options

@Levi-Armstrong
Comment options

@leiyu2023
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants