I cannot get the RhinoScriptSyntax “AddEdgeSrf()” to work on two planar, concentric closed curves.
I copied the exact example ( and added the missing parenthese in the if statement) :
import rhinoscriptsyntax as rs
curves = rs.GetObjects("Select 2, 3, or 4 curves", rs.filter.curve)
if (curves and len(curves)>1 ): rs.AddEdgeSrf(curves)
All curves are closed curves. I am fine with AddPlanarSrf(), I am just wondering why AddEdgeSrf() did not work. But seeing your example with multiple curves as edges I now understand, thanks.