pyqtgraph/examples/GLViewWidget.py

32 lines
589 B
Python
Raw Permalink Normal View History

2012-03-06 06:22:41 +00:00
# -*- coding: utf-8 -*-
2013-02-25 04:09:03 +00:00
"""
Very basic 3D graphics example; create a view widget and add a few items.
"""
2012-03-06 06:22:41 +00:00
## Add path to library (just for examples; you do not need this)
import initExample
2012-03-06 06:22:41 +00:00
import pyqtgraph as pg
2012-03-06 06:22:41 +00:00
import pyqtgraph.opengl as gl
pg.mkQApp("GLViewWidget Example")
2012-03-06 06:22:41 +00:00
w = gl.GLViewWidget()
w.show()
2013-02-25 04:09:03 +00:00
w.setWindowTitle('pyqtgraph example: GLViewWidget')
w.setCameraPosition(distance=20)
2012-03-06 06:22:41 +00:00
ax = gl.GLAxisItem()
ax.setSize(5,5,5)
w.addItem(ax)
2012-03-06 06:22:41 +00:00
b = gl.GLBoxItem()
w.addItem(b)
ax2 = gl.GLAxisItem()
ax2.setParentItem(b)
2012-03-06 06:22:41 +00:00
b.translate(1,1,1)
if __name__ == '__main__':
2021-05-13 21:28:22 +00:00
pg.exec()