(self, point0, point1, boundingbox=False)
| 118 | """ |
| 119 | |
| 120 | def __init__(self, point0, point1, boundingbox=False): |
| 121 | self.p0 = Vector(*point0) |
| 122 | self.p1 = Vector(*point1) |
| 123 | self.test_boundingbox = boundingbox |
| 124 | |
| 125 | def filter(self, objectList: Sequence[Shape]): |
| 126 |