Last active
July 31, 2024 12:27
-
-
Save markjay4k/da2f55e28514be7160a7c5fbf95bd243 to your computer and use it in GitHub Desktop.
animated 3D example using PyQtGraph and OpenGL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Animated 3D sinc function | |
""" | |
from pyqtgraph.Qt import QtCore, QtGui | |
import pyqtgraph.opengl as gl | |
import pyqtgraph as pg | |
import numpy as np | |
import sys | |
class Visualizer(object): | |
def __init__(self): | |
self.traces = dict() | |
self.app = QtGui.QApplication(sys.argv) | |
self.w = gl.GLViewWidget() | |
self.w.opts['distance'] = 40 | |
self.w.setWindowTitle('pyqtgraph example: GLLinePlotItem') | |
self.w.setGeometry(0, 110, 1920, 1080) | |
self.w.show() | |
# create the background grids | |
gx = gl.GLGridItem() | |
gx.rotate(90, 0, 1, 0) | |
gx.translate(-10, 0, 0) | |
self.w.addItem(gx) | |
gy = gl.GLGridItem() | |
gy.rotate(90, 1, 0, 0) | |
gy.translate(0, -10, 0) | |
self.w.addItem(gy) | |
gz = gl.GLGridItem() | |
gz.translate(0, 0, -10) | |
self.w.addItem(gz) | |
self.n = 50 | |
self.m = 1000 | |
self.y = np.linspace(-10, 10, self.n) | |
self.x = np.linspace(-10, 10, self.m) | |
self.phase = 0 | |
for i in range(self.n): | |
yi = np.array([self.y[i]] * self.m) | |
d = np.sqrt(self.x ** 2 + yi ** 2) | |
z = 10 * np.cos(d + self.phase) / (d + 1) | |
pts = np.vstack([self.x, yi, z]).transpose() | |
self.traces[i] = gl.GLLinePlotItem(pos=pts, color=pg.glColor( | |
(i, self.n * 1.3)), width=(i + 1) / 10, antialias=True) | |
self.w.addItem(self.traces[i]) | |
def start(self): | |
if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'): | |
QtGui.QApplication.instance().exec_() | |
def set_plotdata(self, name, points, color, width): | |
self.traces[name].setData(pos=points, color=color, width=width) | |
def update(self): | |
for i in range(self.n): | |
yi = np.array([self.y[i]] * self.m) | |
d = np.sqrt(self.x ** 2 + yi ** 2) | |
z = 10 * np.cos(d + self.phase) / (d + 1) | |
pts = np.vstack([self.x, yi, z]).transpose() | |
self.set_plotdata( | |
name=i, points=pts, | |
color=pg.glColor((i, self.n * 1.3)), | |
width=(i + 1) / 10 | |
) | |
self.phase -= .003 | |
def animation(self): | |
timer = QtCore.QTimer() | |
timer.timeout.connect(self.update) | |
timer.start(20) | |
self.start() | |
# Start Qt event loop unless running in interactive mode. | |
if __name__ == '__main__': | |
v = Visualizer() | |
v.animation() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment