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)
|
2012-12-26 17:51:52 -05:00
|
|
|
import initExample
|
2012-03-06 01:22:41 -05:00
|
|
|
|
2021-06-29 12:58:57 +08:00
|
|
|
import pyqtgraph as pg
|
2012-03-06 01:22:41 -05:00
|
|
|
import pyqtgraph.opengl as gl
|
|
|
|
|
2021-06-29 12:58:57 +08:00
|
|
|
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')
|
2021-07-17 17:37:38 +08:00
|
|
|
w.setCameraPosition(distance=20)
|
2012-03-06 01:22:41 -05:00
|
|
|
|
2012-03-09 12:38:15 -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)
|
|
|
|
|
2012-03-09 12:38:15 -05:00
|
|
|
ax2 = gl.GLAxisItem()
|
|
|
|
ax2.setParentItem(b)
|
2012-03-06 01:22:41 -05:00
|
|
|
|
2012-03-09 12:38:15 -05:00
|
|
|
b.translate(1,1,1)
|
|
|
|
|
2012-12-05 00:25:45 -05:00
|
|
|
if __name__ == '__main__':
|
2021-05-14 05:28:22 +08:00
|
|
|
pg.exec()
|