MCPcopy
hub / github.com/CadQuery/cadquery / select

Method select

cadquery/sketch.py:695–705  ·  view source on GitHub ↗

Select based on tags.

(self: T, *tags: str)

Source from the content-addressed store, hash-verified

693 return self
694
695 def select(self: T, *tags: str) -> T:
696 """
697 Select based on tags.
698 """
699
700 self._selection = []
701
702 for tag in tags:
703 self._selection.extend(self._tags[tag])
704
705 return self
706
707 def faces(
708 self: T, s: Optional[Union[str, Selector]] = None, tag: Optional[str] = None

Callers 2

test_selectorsFunction · 0.80
lFunction · 0.80

Calls 1

extendMethod · 0.80

Tested by 1

test_selectorsFunction · 0.64