AddPlanarSrf

Creates one or more surfaces from planar curves.

Syntax

rhinoscriptsyntax.AddPlanarSrf (object_ids)

rhinoscript.object.AddPlanarSrf (object_ids)

Parameters

object_ids

Required.  List.  A list of strings or Guids of curve object identifiers.

Returns

List

A list of Guids identifying the new objects if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

objs = rs.GetObjects("Select planar curves to build surface", rs.filter.curve)

if objs: rs.AddPlanarSrf(objs)

Also See

AddEdgeSrf

AddSrfControlPtGrid

AddSrfPt

AddSrfPtGrid