Hides one or more objects. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
rhinoscriptsyntax.HideObjects (object_ids)
rhinoscript.object.HideObjects (object_ids)
object_ids |
Required. list. A list of strings or Guids identifying the objects to hide. |
Number |
The number of objects hidden. |
import rhinoscriptsyntax as rs
ids = rs.GetObjects("Select objects to hide")
if ids: rs.HideObjects(ids)