We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f485a2e commit 53624ccCopy full SHA for 53624cc
declaracad/occ/impl/occ_chamfer.py
@@ -134,6 +134,9 @@ def chamfer_3d(self, child) -> TopoDS_Shape:
134
if isinstance(face, TopoDS_Edge) and d1 == d2:
135
edge = face
136
chamfer.Add(d1, edge)
137
+ elif isinstance(face, TopoDS_Wire) and d1 == d2:
138
+ for edge in child.topology.edges_from_wire(face):
139
+ chamfer.Add(d1, edge)
140
elif edge is None:
141
for edge in child.topology.edges_from_face(face):
142
if angle:
0 commit comments