Adds one or more point objects to the document.
rhinoscriptsyntax.AddPoints (points)
rhinoscript.geometry.AddPoints (points)
points |
Required. List or tuple. A list of 3-D points. |
List of Guids |
The identifiers of the new objects if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
points = rs.GetPoints(True, True, "Select points")
if points: rs.AddPoints(points)