Tagged Questions
2
votes
5answers
6k views
calling Qt's QGraphicsView::setViewport with a custom QGLWidget
I've derived from QGLWidget before, like so:
class MyGLWidget : public QGLWidget
{
public:
// stuff...
virtual void initializeGL() { /* my custom OpenGL initialization routine */ }
// more ...
1
vote
2answers
1k views
Transparent QGLWidget on top of QGraphicsView
I'm using QGraphicsView to show a 2D image and also have a separate QGLWidget window to display some 3D object. I'm dynamically changing the image displayed in `QGraphicsView' based on the rotation of ...
0
votes
1answer
161 views
Qt - multiple layers containing a QGraphicsView in one 3D scene (QGLWidget)
I'm currently evaluating the possibilities to implement a navigable 3D scene which allows to render multiple 2D layers. To be a bit more precise, I would like to display multiple graphs in a 3D ...