Model.edgesmarkuntrim#
- Model.edgesmarkuntrim(collection)#
Removes the specified trimming lines from their surface.
- Parameters:
collection (Collection) – The collection containing the trimming line entities that refer to edges to remove.
Example#
Unsplitte edges with ID 99#import hm import hm.entities as ent model = hm.Model() lines = hm.Collection(model, ent.Line, [99]) model.edgesmarkuntrim(collection=lines)