Hi there, The code Bartalon provides workes fine. Now i'm looking for a way to alter the code so it creates curves for all the edge loops , instead of making a lot of curves for all the intersecting parts. Maybe by SelectEdgeLoopSp or by attachCurve ? I want to use the curves to do a extrude face over each curve. Hopefully…
So do you want each edge to be its own curve then? CreateCurveFromPoly will try to combine adjacent edges if the curve is possible and ignore the remainder. The following code will generate one curve per edge but will not attempt to combine adjacent edges: {string $edges[] = `ls -sl`;$edges = `filterExpand -sm 32`;for…