←back to thread

269 points OlympicMarmoto | 2 comments | | HN request time: 0s | source

I discovered this collision detection algorithm during COVID and finally got around to writing about it.

github repo: https://github.com/cairnc/sat_blog

Show context
msteffen ◴[] No.44512706[source]
I'm trying to work through the math here, and I don't understand why these two propositions are equivalent:

1) min_{x,y} |x-y|^2

   x ∈ A

   y ∈ B
2) = min_{x,y} d

   d ≥ |x-y|^2

   x ∈ A

   y ∈ B
What is 'd'? If d is much greater than |x-y|^2 at the actual (x, y) with minimal distance, and equal to |x-y|^2 at some other (x', y'), couldn't (2) yield a different, wrong solution? Is it implied that 'd' is a measure or something, such that it's somehow constrained or bounded to prevent this?
replies(4): >>44512964 #>>44513600 #>>44514056 #>>44515013 #
1. OlympicMarmoto ◴[] No.44514056[source]
This is the epigraph form of the problem. You try to find the point with the lowest height in the epigraph.

https://en.wikipedia.org/wiki/Epigraph_(mathematics)

replies(1): >>44517198 #
2. msteffen ◴[] No.44517198[source]
Ah, got it, thanks!!