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

Method CompSolids

cadquery/occ_impl/shapes.py:958–963  ·  view source on GitHub ↗

:returns: All the compsolids in this Shape

(self)

Source from the content-addressed store, hash-verified

956 return [Solid(i) for i in self._entities("Solid")]
957
958 def CompSolids(self) -> list[CompSolid]:
959 """
960 :returns: All the compsolids in this Shape
961 """
962
963 return [CompSolid(i) for i in self._entities("CompSolid")]
964
965 def _filter(self, selector: Selector | str | None, objs: Iterable[Shape]) -> Shape:
966

Callers 1

testCompSolidMethod · 0.80

Calls 2

_entitiesMethod · 0.95
CompSolidClass · 0.85

Tested by 1

testCompSolidMethod · 0.64