def keep_drawing_static(self): draw.set_color(*resources.key_colors[self.key]) graphics.set_line_width(5) draw.line(self.x1, self.y1, self.x2, self.y2) draw.set_color(0, 0, 0, 1) graphics.set_line_width(1) draw.line(self.x1, self.y1, self.x2, self.y2)
def keep_drawing_static(self): draw.set_color(0,0,0,1) draw.line(self.x1, self.y1, self.x2, self.y2)
def keep_drawing(self, x, y, dx, dy): x, y = self.check_snap(x,y) self.x2, self.y2 = x, y draw.set_color(0,0,0,1) draw.line(self.x1, self.y1, self.x2, self.y2)