Intersection of a 2D segment with a rectangle

Fernando Wieliczko picture Fernando Wieliczko · Sep 11, 2011 · Viewed 14k times · Source

I using C# and XNA. I need an algorithm in any language to obtain the border intersection point(s) of a rectangle with a 2d segment.

I've been looking for an answer for my question for over 3 hours already and couldn't find a solution that works.

Can anyone help me please?

Thanks a lot.

Answer

Fox32 picture Fox32 · Sep 11, 2011

You can find an example for a line segment intersection with an aabb box here.

Or the same question as your question here