Creates a new surface from either 3 or 4 corner points.
rhinoscriptsyntax.AddSrfPt (points)
rhinoscript.surface.AddSrfPt (points)
points |
Required. List. A list of either 3 or 4 corner points. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
points = rs.GetPoints(True, message1="Pick 3 or 4 corner points")
if points: rs.AddSrfPt(points)
AddEdgeSrf