From a082d76fda730120764af09aa9bccce162cb36f9 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sun, 25 Apr 2010 11:04:31 +0000 Subject: added mouse event support to sample code --- (limited to 'tamyblock.py') diff --git a/tamyblock.py b/tamyblock.py index 0e52577..763dcb9 100644 --- a/tamyblock.py +++ b/tamyblock.py @@ -169,7 +169,7 @@ def myblock(lc, x): lc.tw.canvas.setpen(False) lc.tw.canvas.forward((lc.tw.canvas.pensize*2)-1) dist += (lc.tw.canvas.pensize*2) - lc.tw.canvas.forward(x-dist) # make sure we have moved exactly x + lc.tw.canvas.forward(x-dist) # make sure we have moved exactly x lc.tw.canvas.setpen(True) else: lc.tw.canvas.forward(x) @@ -229,4 +229,17 @@ def myblock(lc, x): # lc.tw.save_as_image(str(x)) # return + ########################################################################### + # + # Push mouse event to stack + # + ########################################################################### + # if lc.tw.mouse_flag == 1: + # lc.heap.append(lc.tw.mouse_y) + # lc.heap.append(lc.tw.mouse_x) + # lc.heap.append(1) # mouse event + # lc.tw.mouseflag = 0 + # else: + # lc.heap.append(0) # no mouse event + # return -- cgit v0.9.1