CoffeeSCad
CoffeeSCad copied to clipboard
Add 2D loft
If you have two different polylines, a loft between the two would be a great feature to have. E.g. go from a square to a circle. I would think of a syntax like this would be nice:
poly1 = CAGBase.fromPoints([[-10,-12],[14,-12],[14,4],[3,14],[-4,8],[-4,13],[-7,13],[-7,6],[-10,3]])
poly2 = CAGBase.fromPoints([[-12,-12],[14,-12],[14,4])
shape = new Loft(poly1,poly2)
assembly.add(shape)
Yes this definetly would be nice ! :) Also looking into "extrude along path", perhaps a combo of both could also be done down the line