wxPython 그래프 그리기 1-draw
pronterface.py에서 graph.py를 분석하면 알기 쉽습니다. 이 클래스 선언을 살펴보면 class Graph(BufferedCanvas): '''A class to show a Graph with Pronterface.''' 클래스 생성자에 def __init__(self, parent, id, root, pos = wx.DefaultPosition, size = wx.Size(150, 80), style = 0, parent_graph = None): # Forcing a no full repaint to stop flickering style = style | wx.NO_FULL_REPAINT_ON_RESIZE super(Graph, self).__init__(parent, id,..
2019. 10. 5.