예제 #1
0
 def point_inside(self, point):
     if not self.location:
         return False
     return guiutils.point_in_square(point, self.location, self.chit_scale)
예제 #2
0
파일: Marker.py 프로젝트: dripton/Slugathon
 def point_inside(self, point):
     if not self.location:
         return False
     return guiutils.point_in_square(point, self.location, self.chit_scale)
예제 #3
0
 def point_inside(self, point):
     assert self.location
     return guiutils.point_in_square(point, self.location, self.chit_scale)
예제 #4
0
 def point_inside(self, point):
     assert self.location
     return guiutils.point_in_square(point, self.location, self.chit_scale)