rename draw_one_stitch to be more accurate

pull/10/head
Lex Neva 2017-12-28 15:39:56 -05:00
rodzic 6e85547432
commit a736f7293f
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -118,7 +118,7 @@ class EmbroiderySimulator(wx.Frame):
def go(self):
self.current_stitch = 0
self.timer = wx.PyTimer(self.draw_one_stitch)
self.timer = wx.PyTimer(self.draw_one_frame)
self.timer.Start(self.frame_period)
def clear(self):
@ -149,7 +149,7 @@ class EmbroiderySimulator(wx.Frame):
dc = wx.ClientDC(self)
dc.DrawBitmap(self.buffer, 0, 0)
def draw_one_stitch(self):
def draw_one_frame(self):
for i in xrange(self.stitches_per_frame):
try:
((x1, y1), (x2, y2)), color = self.stitches[self.current_stitch]