1

私は Tkinter と初心者に慣れていないので、とても簡単です。正しくコーディングしようとしましたが、何か間違ったことをしているに違いありません。これらは私が直面している問題です。

問題:

  • プログラムは続行しますが、スライダーを動かすとすぐに Python がクラッシュしますか?? ランダム
  • ズーム ボタンは、スライダーと同じコードを持っていますが、図を更新しませんか?
  • フィギュアの周りに大きなブラック ボードがありますが、それはがらくたに見えます
  • 全般 コードの速度が遅い。

クラッシュ(実行し続ける)は次のとおりです。

  • ランタイムエラー!プログラム: C:\Python27\pythonw.exe [MS Visual C++ ランタイム ライブラリ]
  • 場所 0x1e06016a [TclNotifier: pythonw.exe] のアプリケーションで例外不明なソフトウェア例外 (0x40000015) が発生しました

これらは、プログラムを磨き上げ、応答性と親しみやすさを高めるために本当に知りたいことです.

助けてくれてありがとう

# ---------- Imports ------------------------------------- #
from Tkinter import *
import matplotlib
import numpy as np
# ---------- Settings ------------------------------------ #
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
# ---------- Classes  ------------------------------------ #
class App(Frame):
    def __init__(self,master=None):
        Frame.__init__(self, master)
        self._job = None
        self.canvas = None
        self.Flag_Zoom = False
        self.pack()
        self._GUI_Design()
        self._GenData()
        self._Figure(self.Arm,self.Flag_Zoom)
        # Load the figure Window
        # Send to TK           
        self.canvas = FigureCanvasTkAgg(self.f, master=self.LF_Graph)

    def _GUI_Design(self):
        # Initial Frames        
        self.LF_Control = LabelFrame(self, text='Angle Controls', width=400, height=100, )
        self.LF_Graph = LabelFrame(self, text='Figure', width=400, height=400)
        self.LF_Control.grid(row=0, column=1, padx=5,pady=1)
        self.LF_Graph.grid(row=1, column=0,columnspan=2,padx=5,pady=3)

        # Insert Controls
        # Labels
        self.LB_Info = Label(self,text="Reduced Code", justify=LEFT)
        self.LB_SP = Label(self.LF_Control, text="Spoiler:")        

        #   Slider
        self.SpScale = Scale(self.LF_Control, from_=0, to=120, orient=HORIZONTAL, length=300, resolution=1, command=self._UpdateCanvas, tickinterval=10)      

        #   Buttons
        self.Zoomb = Button(self.LF_Control, text="Zoom", command=self._Zoom)
        self.Quit = Button(self.LF_Control, text="Quit", command=self.quit)

        # Grid Layout
        self.LB_Info.grid(row=0, column=0,padx=5,pady=1)
        self.LB_SP.grid(row=0, column=0,padx=10,pady=1)
        self.SpScale.grid(row=0, column=1,padx=10,pady=1)
        self.Zoomb.grid(row=0, column=3 ,padx=10,pady=1)
        self.Quit.grid(row=1, column=3 ,padx=10,pady=1)

    def _GenData(self):
        self.Arm     = [[0,10,184.533],[0,153.734,164.932]]                 

    def _UpdateCanvas(self, event):
        self._job = self.after(100, self._Execute(self.Flag_Zoom))  #miliseconds
        if self._job:
            self.after_cancel(self._job)

    def _Figure(self,Arm,Zoom):
        # Gen Figure
        self.f = plt.figure(1,figsize=(10,10))
        self.f.frame = False
        plt.clf()
        if Zoom == False:
            plt.axis([-500,2000,-1500,1000])
        else:
            plt.axis([-100,500,-100,500])                
        plt.axes().set_aspect('equal', 'datalim')
        plt.plot(Arm[0],Arm[1],"g")

    def _Zoom(self):
        self._UpdateCanvas
        if self.Flag_Zoom == True:
            self.Flag_Zoom = False
        else:
            self.Flag_Zoom = True

    def _Execute(self,Zoom):
        RotA = self.RotateNO(self.Arm,self.SpScale.get(),[0,0])
        self._Figure(RotA,Zoom)
        self.canvas.draw()
        self.canvas.show()
        if self.canvas:
            self.canvas.get_tk_widget().grid(row=0, column=0)
# ----------  Calculations -------------------------------- #
def RotateNO(self,List,Angle,Orig):       
    # Angle: deg2rad
    th = -1.*float(Angle)/180*np.pi
    Rot = [[],[]]
    # Loop through
    for i in xrange(0,len(List[0])):
        X1 = (List[0][i]-Orig[0])*np.cos(th) - (List[1][i]-Orig[1])*np.sin(th)+Orig[0]
        Y1 = (List[0][i]-Orig[0])*np.sin(th) + (List[1][i]-Orig[1])*np.cos(th)+Orig[1]
        Rot[0].append(X1)
        Rot[1].append(Y1)
    return Rot       
# ---------- Execute Application ------------------------- #
root = Tk()
root.title("Rotation")
Exe = App(master=root)
Exe.mainloop()
root.destroy()
4

1 に答える 1