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

Method faces

cadquery/occ_impl/shapes.py:1026–1031  ·  view source on GitHub ↗

Select faces.

(self, selector: Selector | str | None = None)

Source from the content-addressed store, hash-verified

1024 return self._filter(selector, map(Shape.cast, self._entities("Wire")))
1025
1026 def faces(self, selector: Selector | str | None = None) -> Shape:
1027 """
1028 Select faces.
1029 """
1030
1031 return self._filter(selector, map(Shape.cast, self._entities("Face")))
1032
1033 def shells(self, selector: Selector | str | None = None) -> Shape:
1034 """

Callers 2

sweepFunction · 0.45
loftFunction · 0.45

Calls 2

_filterMethod · 0.95
_entitiesMethod · 0.95

Tested by

no test coverage detected