hackathon-dev #1
@ -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
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user