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

Method Shells

cadquery/occ_impl/shapes.py:944–949  ·  view source on GitHub ↗

:returns: All the shells in this Shape

(self)

Source from the content-addressed store, hash-verified

942 return [Face(i) for i in self._entities("Face")]
943
944 def Shells(self) -> list[Shell]:
945 """
946 :returns: All the shells in this Shape
947 """
948
949 return [Shell(i) for i in self._entities("Shell")]
950
951 def Solids(self) -> list[Solid]:
952 """

Callers 4

hollowMethod · 0.80
innerShellsMethod · 0.80
test_addCavityFunction · 0.80
testCompSolidMethod · 0.80

Calls 2

_entitiesMethod · 0.95
ShellClass · 0.85

Tested by 2

test_addCavityFunction · 0.64
testCompSolidMethod · 0.64