PDA

View Full Version : 3D graph without QtDataVisualization



mut
15th March 2016, 16:16
Hello

I want to create a 3D graph but I don't have QtDataVisualization because I can't afford Qt enterprise.
How can I do some 3D graph without the QtDataVisualization package?

Thanks;

Mut

anda_skoa
15th March 2016, 16:38
QtDataVisualization will become a dual licensed module with Qt 5.7

Alternatively you can draw items yourself:
- with QPainter on a QQuickPaintedItem derived item
- with OpenGL on a QQuickFramebufferObject base item
- with Qt's SceneGraph API on a QQuickItem derived class

Cheers,
_