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

Method edges

cadquery/occ_impl/shapes.py:1012–1017  ·  view source on GitHub ↗

Select edges.

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

Source from the content-addressed store, hash-verified

1010 return self._filter(selector, map(Shape.cast, self._entities("Vertex")))
1011
1012 def edges(self, selector: Selector | str | None = None) -> Shape:
1013 """
1014 Select edges.
1015 """
1016
1017 return self._filter(selector, map(Shape.cast, self._entities("Edge")))
1018
1019 def wires(self, selector: Selector | str | None = None) -> Shape:
1020 """

Callers 4

_get_edgesFunction · 0.45
_get_face_listsFunction · 0.45
filletFunction · 0.45
chamferFunction · 0.45

Calls 2

_filterMethod · 0.95
_entitiesMethod · 0.95

Tested by

no test coverage detected