revised the feedback for freehand

This commit is contained in:
Amy Bowersox 2019-12-11 14:55:34 -07:00
parent e7f191a9e0
commit 85e89eae4c
1 changed files with 9 additions and 5 deletions

View File

@ -59,11 +59,15 @@ current_y = 0
def freehand_draw(x, y, down, up):
global current_x, current_y
hdc.text_color = color_list[current_color]
hdc.move_to(current_x, current_y)
hdc.line_to(x, y)
current_x = x
current_y = y
if down:
current_x = origin_x
current_y = origin_y
else:
hdc.text_color = color_list[current_color]
hdc.move_to(current_x, current_y)
hdc.line_to(x, y)
current_x = x
current_y = y
def rubberband_rectangle(x, y, down, up):
global current_x, current_y