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

Method innerWires

cadquery/occ_impl/shapes.py:3493–3497  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3491 return Wire(BRepTools.OuterWire_s(self.wrapped))
3492
3493 def innerWires(self) -> list[Wire]:
3494
3495 outer = self.outerWire()
3496
3497 return [w for w in self.Wires() if not w.isSame(outer)]
3498
3499 @classmethod
3500 def makeNSidedSurface(

Callers 11

projectMethod · 0.95
_extrudeMethod · 0.80
sweepMethod · 0.80
sortWiresByBuildOrderFunction · 0.80
faceOnFunction · 0.80
sweepFunction · 0.80
loftFunction · 0.80
test_addHoleFunction · 0.80
test_prismFunction · 0.80
test_history_sweepFunction · 0.80

Calls 3

outerWireMethod · 0.95
WiresMethod · 0.80
isSameMethod · 0.80

Tested by 3

test_addHoleFunction · 0.64
test_prismFunction · 0.64
test_history_sweepFunction · 0.64