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

Method Wires

cadquery/occ_impl/shapes.py:930–935  ·  view source on GitHub ↗

:returns: All the wires in this Shape

(self)

Source from the content-addressed store, hash-verified

928 return [Compound(i) for i in self._entities("Compound")]
929
930 def Wires(self) -> list[Wire]:
931 """
932 :returns: All the wires in this Shape
933 """
934
935 return [Wire(i) for i in self._entities("Wire")]
936
937 def Faces(self) -> list[Face]:
938 """

Callers 8

innerWiresMethod · 0.80
add_shapeMethod · 0.80
_ordered_edgesMethod · 0.80
test_bool_opsFunction · 0.80
test_distanceMethod · 0.80
test_constructorsFunction · 0.80
test_textFunction · 0.80
test_fillFunction · 0.80

Calls 2

_entitiesMethod · 0.95
WireClass · 0.85

Tested by 5

test_bool_opsFunction · 0.64
test_distanceMethod · 0.64
test_constructorsFunction · 0.64
test_textFunction · 0.64
test_fillFunction · 0.64