Adds a point cloud object to the document.
rhinoscriptsyntax.AddPointCloud (points)
rhinoscript.geometry.AddPointCloud (points)
points |
Required. List or tuple. A list of 3-D points. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
points = (0,0,0), (1,1,1), (2,2,2), (3,3,3)
rs.AddPointCloud(points)