示例#1
0
文件: Rect.py 项目: irskep/Gluball
 def keep_drawing_static(self):
     draw.set_color(0,0,0,1)
     draw.rect(self.x1, self.y1, self.x2, self.y2)
示例#2
0
文件: Rect.py 项目: irskep/Gluball
 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.rect(self.x1, self.y1, self.x2, self.y2)