(self, point: Tuple[int, int])
| 1111 | return list(set(l1) & set(l2)) |
| 1112 | |
| 1113 | def containsPoint(self, point: Tuple[int, int]) -> bool: |
| 1114 | (x, y) = point |
| 1115 | (X, Y, W, H) = self.getPositionAndSize() |
| 1116 | return (x >= X) and (x <= (X + W)) and ((y >= Y) and (y <= (Y + H))) |
| 1117 | |
| 1118 | def add(self, child): |
| 1119 | """ |