rhinoscriptsyntax.ExplodeHatch (hatch_id, delete=False)
rhinoscript.hatch.ExplodeHatch (hatch_id, delete=False)
hatch_id |
必须参数。字符串或 Guid。物件的 ID 。 |
delete |
可选参数。布尔值。删除填充图案物件。默认情况下不删除填充图案物件(False)。 |
列表 |
新生成物件 Guid 构成的列表。 |
None |
出错返回空值。 |
import rhinoscriptsyntax as rs
id = rs.GetObject("Select object")
if rs.IsHatch(id): rs.ExplodeHatch(id, True)