AddPointCloud

Adds a point cloud object to the document.

Syntax

rhinoscriptsyntax.AddPointCloud (points)

rhinoscript.geometry.AddPointCloud (points)

Parameters

points

Required.  List or tuple.  A list of 3-D points.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

points = (0,0,0), (1,1,1), (2,2,2), (3,3,3)

rs.AddPointCloud(points)

Also See

IsPointCloud

PointCloudCount

PointCloudPoints