Shows a previously hidden object. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
rhinoscriptsyntax.ShowObject (object_id)
rhinoscript.object.ShowObject (object_id)
object_id |
Required. String of Guid. The identifier of the object to show. |
Boolean |
True or false indicating success or failure. |
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select object to hide")
if obj: rs.HideObject(obj)
# Do something here...
rs.ShowObject( obj )