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

Method edges

cadquery/sketch.py:725–732  ·  view source on GitHub ↗

Select edges.

(
        self: T, s: Optional[Union[str, Selector]] = None, tag: Optional[str] = None
    )

Source from the content-addressed store, hash-verified

723 return self._select(s, "Wires", tag)
724
725 def edges(
726 self: T, s: Optional[Union[str, Selector]] = None, tag: Optional[str] = None
727 ) -> T:
728 """
729 Select edges.
730 """
731
732 return self._select(s, "Edges", tag)
733
734 def vertices(
735 self: T, s: Optional[Union[str, Selector]] = None, tag: Optional[str] = None

Callers

nothing calls this directly

Calls 1

_selectMethod · 0.95

Tested by

no test coverage detected