AddPoints

Adds one or more point objects to the document.

Syntax

rhinoscriptsyntax.AddPoints (points)

rhinoscript.geometry.AddPoints (points)

Parameters

points

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

Returns

List of Guids

The identifiers of the new objects if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

points = rs.GetPoints(True, True, "Select points")

if points: rs.AddPoints(points)

Also See

AddPoint

AddPointCloud