rhinoscriptsyntax.ExplodeHatch (hatch_id, delete=False)
rhinoscript.hatch.ExplodeHatch (hatch_id, delete=False)
hatch_id |
Required. String or Guid. The identifier of an object. |
delete |
Optional. Boolean. Delete the hatch object. The default is to not delete the hatch object (False). |
List |
A list of Guids identifying the newly created objects if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
id = rs.GetObject("Select object")
if rs.IsHatch(id): rs.ExplodeHatch(id, True)