File size: 280 Bytes
5e6439e | 1 2 3 4 | import cadquery as cq
w0=cq.Workplane('XY',origin=(0,0,-10))
w1=cq.Workplane('YZ',origin=(3,0,0))
r=w0.workplane(offset=55/2).moveTo(-10,41).cylinder(55,9).union(w1.sketch().segment((-38,-42),(-36,-42)).segment((-36,-43)).arc((-17,-1),(-38,-42)).assemble().finalize().extrude(16)) |