cadquery

how to iteratively loft wires in cadquery?

how to iteratively loft wires in cadquery? Question: I can loft a 2D shape from one plane to another like this: import cadquery as cq from jupyter_cadquery.cadquery import show result = cq.Workplane(“XY”).rect(1,2).workplane() .transformed(offset=cq.Vector(0, -0.5, 1.0),rotate=cq.Vector(10, 0, 0)) .rect(1,2).loft(combine=True) show(result) I would like to repeat the operation several times like this: import cadquery as cq from …

Total answers: 1