Method
__init__
(
self,
vector: Vector,
n: int,
directionMax: bool = True,
tolerance: float = 0.0001,
)
Source from the content-addressed store, hash-verified
| 437 | """ |
| 438 | |
| 439 | def __init__( |
| 440 | self, |
| 441 | vector: Vector, |
| 442 | n: int, |
| 443 | directionMax: bool = True, |
| 444 | tolerance: float = 0.0001, |
| 445 | ): |
| 446 | ParallelDirSelector.__init__(self, vector, tolerance) |
| 447 | _NthSelector.__init__(self, n, directionMax, tolerance) |
| 448 | |
| 449 | def filter(self, objectlist: Sequence[Shape]) -> List[Shape]: |
| 450 | objectlist = ParallelDirSelector.filter(self, objectlist) |
Callers
nothing calls this directly
Tested by
no test coverage detected