MCPcopy Index your code
hub / github.com/CadQuery/cadquery / __init__

Method __init__

cadquery/selectors.py:439–447  ·  view source on GitHub ↗
(
        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

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected