
Thu, 01/04/2024 - 16:18
This question is similar to this:https://dev.opencascade.org/content/using-opencascade-opengl
I understand that the Viewer is typically used for handling three-dimensional objects, but I have a requirement to draw an image using OpenGL in the OpenCASCADE Viewer and place it at the bottom of the Viewer as a legend. While I am aware that it is possible to indirectly achieve this by using the SetBackgroundImage method to set the legend as the background, my boss seems not satisfied with this approach.
I have also found this discussion:https://dev.opencascade.org/content/running-custom-opengl-alongside-v3d-... , but as a beginner, I am unable to comprehend how to customize OpenGL in the viewer.
Therefore, I would like to know if there is any method to accomplish this goal. Thank you!
Fri, 01/05/2024 - 20:47
Dealing with OpenGL is over-complicated for this purpose.
If what you want is just displaying an image in 3D viewer - you may achieve this by displaying a texture, applying 2D transformation persistence to the presentation (
Graphic3d_TMF_2d
) and assigning desired Z-layer (Graphic3d_ZLayerId_BotOSD
). You may do this even using standardAIS_Shape
presentation or by defining own very simpleAIS_InteractiveObject
subclass.Sat, 01/06/2024 - 12:03
Thanks for your prompt reply, I followed your advice by using AIS_TexturedShape to achieve this. The result looks great.
By the way, I still wanted to know if there are any articles or examples on creating OpenGL within the Open CASCADE viewer. Even though I can currently achieve the desired effect using AIS_TexturedShape, for the purpose of learning OpenGL and Open CASCADE, my boss might still prefer me to use OpenGL :-) thanks again for your help.
Sat, 01/06/2024 - 13:19
You may find
VUserDraw
sample that performs low-level OpenGL drawing withinsrc/OpenGlTest/OpenGlTest_Commands.cxx
in OCCT.Sat, 01/06/2024 - 14:45
Thanks, I will check out it☺️