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

Method Vertices

cadquery/occ_impl/shapes.py:905–910  ·  view source on GitHub ↗

:returns: All the vertices in this Shape

(self)

Source from the content-addressed store, hash-verified

903 return out
904
905 def Vertices(self) -> list[Vertex]:
906 """
907 :returns: All the vertices in this Shape
908 """
909
910 return [Vertex(i) for i in self._entities("Vertex")]
911
912 def Edges(self) -> list[Edge]:
913 """

Callers

nothing calls this directly

Calls 2

_entitiesMethod · 0.95
VertexClass · 0.85

Tested by

no test coverage detected