Using Qt3D for a huge topography model?
Unsolved
General and Desktop
-
My scene currently consists of a huge topography model (Mill. Verticies). Now the scene becomes more complex and contains many smaller 3D objects. Does it make sense to switch from a QFrambufferObject (with C ++ / OpenGL) to Qt3D?
- What about the speed?
- Which file format (Wavefront OBJ, Stanford Triangle Format PLY, STL (STereoLithography)) is suitable? I am currently loading the data from the .hgt format into a vector array and then into the QFrambufferObject.
- With Qt3D, is it possible to load only the tiles in the graphics card that are currently visible in the viewport or to delete them as soon as they leave the viewport when the camera angles change?
-
I personally would stick with openGL, but that's just my comfort level.
-
@Kent-Dorfman: I just updatet my question to makes it more clear. Is pure openGL from a certain scene complexity not to complicate? I think then it's time to write a own render framework?