Adds a point object to the document.
Rhino.AddPoint (arrPoint)
arrPoint |
Required. Array. A 3-D point. |
String |
The identifier of the new object if successful. |
Null |
If not successful, or on error. |
Dim arrPoint
arrPoint = Rhino.GetPoint("Pick a point")
If IsArray(arrPoint) Then
Rhino.AddPoint arrPoint
End If