* pyqtgraph 내려받기 * 예제 소스 (극곡선 r = 2 cos(3 theta) 그리기) # -*- coding: utf-8 -*- # Filename: testPyQtGraph_03.py # Execute: python testPyQtGraph_03.py from pyqtgraph.Qt import QtGui, QtCore import numpy as np import pyqtgraph as pg app = QtGui.QApplication([]) win = pg.GraphicsWindow(title="Basic plotting examples") win.resize(400, 500) win.setWindowTitle('pyqtgraph example: Plotting') # Enable ant..