Move check_interaction to Cross clas

This commit is contained in:
Ian Jauslin 2021-09-28 10:42:20 -04:00
parent b8a3e44f7c
commit b3949e25f2

View File

@ -41,7 +41,7 @@ class Cross_painter(Widget):
def on_touch_down(self,touch):
# create new cross
if touch.button=="right":
if self.check_add((touch.x,touch.y)):
if self.check_add(Point(touch.x,touch.y)):
new=Cross(touch.x,touch.y)
with self.canvas:
new.draw()
@ -91,7 +91,7 @@ class Cross_painter(Widget):
# check that a cross can be added at position
def check_add(self,pos):
for cross in self.crosses:
if self.check_interaction(pos,cross)==False:
if cross.check_interaction(pos)==False:
return False
return True