I need a mathematical approach to check if a 3D polygonal object is convex. In other words, how can one determine mathematically if a 3D polygonal object is convex by knowing the vertexes of the polygon. Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can check that a polygon is concave by taking each face and then replacing all the vertices in the plane equation of the face:
|
|||
|
|
|
A 2D polygon is convex if the angles of all vertices have same direction (ie all angling to the left or all angling to the right). However, I'm not sure about 3D polygons. |
|||
|
|