Adds one or more point objects to the document.
Rhino.AddPoints (arrPoints)
arrPoints |
Required. Array. An array of 3-D points. |
Array |
The identifiers of the new objects if successful. |
Null |
If not successful, or on error. |
Dim arrPoints
arrPoints = Rhino.GetPoints(True, True, "Select points")
If IsArray(arrPoints) Then
Rhino.AddPoints arrPoints
End If