How to get a bounding box on everything visible onscreen in pure OpenGL? I want the X, Y, and Z for all 8 points of the bounding box.
|
OpenGL doesn't define a fixed 'box' volume that you see on the screen. In a sense, the application defines these boundaries - which do not, in general, form a rectangular prism - using transforms and projections. The nearest thing to such a 'bounding box' is the normalized device coordinate space or 3d viewport after projection. A bounding box that encloses all your geometry in world coordinate space is something you must determine from your data, and has nothing to do with the GL pipeline. To recover the points in world coordinate space (WCS) that map to the corners of the viewport, you need to understand how matrix transforms and homogeneous coordinates work. The 'front' or 'near' plane in normalized device coordinate space (NDCS) after projection (division by W), is: This corresponds to the hyperplane: The canonical view volume that is mapped to the 3D viewport, is defined by:
So the above can be extended to find the (homogeneous) coordinates corresponding to the 'corners' of the view volume which correspond to the 3d viewport. Consider the top-right corner of the viewport, on the 'near' plane. It corresponds to: Given some matrix: The same idea can be applied to each 'corner'. It's also extremely useful for picking - a picking ray runs from the 'eye' to the WCS inverse projection of Note: This is more detail than I intended to go into, and probably beyond the OP's requirements, but I see questions about picking come up a lot. |
|||||||
|
|
Why would you need OpenGL for that? It's you drawing things, so just run a function through all of your data. Take the projection into account and discard results outside the view volume; the checks are pretty straightforward, especially when using orthographic projection. |
|||
|
|
|
I think in OpenGL, what is on screen is a frustum, not a box. |
||||
|