显示群组中先前被隐藏的物件。隐藏物件,使其不可见、不可捕捉、不可选取。
rhinoscriptsyntax.ShowGroup (group_name)
rhinoscript.group.ShowGroup (group_name)
group_name |
必须参数。字符串。现有群组的名称。 |
数字 |
执行过程中显示物件的数量。 |
None |
出错返回空值。 |
import rhinoscriptsyntax as rs
groups = rs.GroupNames()
if groups:
for group in groups: rs.ShowGroup(group)