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)
|
2012-12-26 22:51:52 +00:00
|
|
|
import initExample
|
2012-03-06 06:22:41 +00:00
|
|
|
|
2021-01-27 18:59:07 +00:00
|
|
|
from pyqtgraph.Qt import QtCore, QtGui, mkQApp
|
2012-03-06 06:22:41 +00:00
|
|
|
import pyqtgraph.opengl as gl
|
|
|
|
|
2021-01-27 18:59:07 +00:00
|
|
|
app = mkQApp("GLViewWidget Example")
|
2012-03-06 06:22:41 +00:00
|
|
|
w = gl.GLViewWidget()
|
2012-03-09 17:38:15 +00:00
|
|
|
w.opts['distance'] = 20
|
2012-03-06 06:22:41 +00:00
|
|
|
w.show()
|
2013-02-25 04:09:03 +00:00
|
|
|
w.setWindowTitle('pyqtgraph example: GLViewWidget')
|
2012-03-06 06:22:41 +00:00
|
|
|
|
2012-03-09 17:38:15 +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)
|
|
|
|
|
2012-03-09 17:38:15 +00:00
|
|
|
ax2 = gl.GLAxisItem()
|
|
|
|
ax2.setParentItem(b)
|
2012-03-06 06:22:41 +00:00
|
|
|
|
2012-03-09 17:38:15 +00:00
|
|
|
b.translate(1,1,1)
|
|
|
|
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
2021-05-13 21:28:22 +00:00
|
|
|
pg.exec()
|