Shows one or more hidden objects. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
rhinoscriptsyntax.ShowObjects (object_ids)
rhinoscript.object.ShowObjects (object_ids)
object_ids |
Required. List. A list of strings or Guids identifying the objects to show. |
Number |
The number of objects shown if successful. |
import rhinoscriptsyntax as rs
objs = rs.GetObjects("Select objects to hide")
if objs: rs.HideObjects(objs)
#Do something here...
rs.ShowObjects( objs )