Adds a new point light object to the document.
rhinoscriptsyntax.AddPointLight (point)
rhinoscript.light.AddPointLight (point)
point |
Required. List of 3 numbers or Point3d. The 3-D location point of the light. |
Guid |
The identifier of the new object if successful. |
import rhinoscriptsyntax as rs
point = rs.GetPoint("Point light location")
if point: rs.AddPointLight(point)