From a736f7293ff1df73cf3ac653d966aa8c7390e2b8 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 28 Dec 2017 15:39:56 -0500 Subject: [PATCH] rename draw_one_stitch to be more accurate --- embroider_simulate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embroider_simulate.py b/embroider_simulate.py index 2629c8120..13a84e8a2 100644 --- a/embroider_simulate.py +++ b/embroider_simulate.py @@ -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]