Check if plane intersects cuboid [closed]
Solution 1:
The simplest is probably to check whether all vertices are on the same side of the plane or not.
The two half-spaces formed by the plane are respectively such that $ax+by+cz+d > 0$ and $<0$. So calculating $ax+by+cz+d$ for each vertex gives you the answer.