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

Method Edges

cadquery/occ_impl/shapes.py:912–921  ·  view source on GitHub ↗

:returns: All the edges in this Shape

(self)

Source from the content-addressed store, hash-verified

910 return [Vertex(i) for i in self._entities("Vertex")]
911
912 def Edges(self) -> list[Edge]:
913 """
914 :returns: All the edges in this Shape
915 """
916
917 return [
918 Edge(i)
919 for i in self._entities("Edge")
920 if not BRep_Tool.Degenerated_s(TopoDS.Edge(i))
921 ]
922
923 def Compounds(self) -> list[Compound]:
924 """

Callers 15

hullMethod · 0.80
_geomAdaptorMethod · 0.80
combineMethod · 0.80
makeNSidedSurfaceMethod · 0.80
_update_historyFunction · 0.80
wireOnFunction · 0.80
getPathsFunction · 0.80
test_figFunction · 0.80
test_styleFunction · 0.80
testWireFilletMethod · 0.80
test_wire_makepolygonFunction · 0.80
test_modifiersFunction · 0.80

Calls 2

_entitiesMethod · 0.95
EdgeClass · 0.85

Tested by 15

test_figFunction · 0.64
test_styleFunction · 0.64
testWireFilletMethod · 0.64
test_wire_makepolygonFunction · 0.64
test_modifiersFunction · 0.64
test_addFunction · 0.64
test_lineMethod · 0.64
test_circleMethod · 0.64
test_arcMethod · 0.64
test_ellipseMethod · 0.64
test_splineMethod · 0.64
testLocationAtMethod · 0.64