Model.sketchdisassociateentities#
- Model.sketchdisassociateentities(sketch_id)#
Removes the association between the sketch and its realized entities. If the sketch entity is hidden, it becomes visible.
- Parameters:
sketch_id (unsigned int) – The ID of the sketch entity.
Example#
Remove the association between sketch ID 1 and its realized entities#import hm import hm.entities as ent model = hm.Model() model.sketchdisassociateentities(sketch_id=1)