cadquery icon indicating copy to clipboard operation
cadquery copied to clipboard

findSolid returns Compound that does not contain a Solid

Open lorenzncode opened this issue 1 year ago • 0 comments

import cadquery as cq

res = (
    cq.Workplane()
    .box(1, 2, 3)
    .section(0)
    .findSolid()
)

res is a Compound (Face). Should the result instead be the Solid on the first parent? See also #1480.

lorenzncode avatar Jan 07 '24 17:01 lorenzncode