pyqtgraph/examples/GLViewWidget.py

32 lines
589 B
Python
Raw Normal View History

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