Creates one or more surfaces from planar curves.
rhinoscriptsyntax.AddPlanarSrf (object_ids)
rhinoscript.object.AddPlanarSrf (object_ids)
object_ids |
Required. List. A list of strings or Guids of curve object identifiers. |
List |
A list of Guids identifying the new objects if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
objs = rs.GetObjects("Select planar curves to build surface", rs.filter.curve)
if objs: rs.AddPlanarSrf(objs)
AddEdgeSrf