CoffeeSCad icon indicating copy to clipboard operation
CoffeeSCad copied to clipboard

Add 2D loft

Open ErikDeBruijn opened this issue 11 years ago • 1 comments

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)

ErikDeBruijn avatar Jun 18 '13 09:06 ErikDeBruijn

Yes this definetly would be nice ! :) Also looking into "extrude along path", perhaps a combo of both could also be done down the line

kaosat-dev avatar Jun 20 '13 18:06 kaosat-dev