Test a specified vector. Subclasses override to provide other implementations
(self, vec: Vector)
| 161 | self.tolerance = tolerance |
| 162 | |
| 163 | def test(self, vec: Vector) -> bool: |
| 164 | "Test a specified vector. Subclasses override to provide other implementations" |
| 165 | return True |
| 166 | |
| 167 | def filter(self, objectList: Sequence[Shape]) -> List[Shape]: |
| 168 | """ |