I have created a newObject and want to perform a cut like this:
cut_new = cq.Workplane('YZ').box(L,W,H)
new = cq.Workplane('XY').newObject(list_of_shapes)
cut_new = new.cut(shape_to_cut)
but nothing happens: the new object remains unchanged. Is that to be expected?