(self, obj)
| 96 | return self.width <= 0 or self.height <= 0 |
| 97 | |
| 98 | def is_hoverlap(self, obj): |
| 99 | assert isinstance(obj, LTComponent) |
| 100 | return obj.x0 <= self.x1 and self.x0 <= obj.x1 |
| 101 | |
| 102 | def hdistance(self, obj): |
| 103 | assert isinstance(obj, LTComponent) |
no outgoing calls
no test coverage detected