AddSrfPt

Creates a new surface from either 3 or 4 corner points.

Syntax

rhinoscriptsyntax.AddSrfPt (points)

rhinoscript.surface.AddSrfPt (points)

Parameters

points

Required.  List.  A list of either 3 or 4 corner points.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

points = rs.GetPoints(True, message1="Pick 3 or 4 corner points")

if points: rs.AddSrfPt(points)

Also See

AddEdgeSrf

AddSrfControlPtGrid

AddSrfPtGrid