cadquery icon indicating copy to clipboard operation
cadquery copied to clipboard

Bug with fillet causing solid to disappear

Open combolek opened this issue 3 years ago • 0 comments

The following code causes the solid body to disappear and it leaves some surfaces only:

import cadquery as cq

result = (
    cq.Workplane('YZ')
    .cylinder(75, 40)
    .faces('>X')
    .workplane()
    .transformed(rotate=(-45,0,0))
    .split(keepBottom=True)
)

result = result.edges('|Y').fillet(4)

image

Note that increasing the fillet value to 5 seems to work OK: image

combolek avatar Feb 22 '22 20:02 combolek