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