Model.surfacemarkuntrim#
- Model.surfacemarkuntrim(surfacecollection)#
Removes any trim lines from the selected surfaces and lets the surface expand to its natural limits. The trim lines are separated from the surface and placed in the current component.
- Parameters:
surfacecollection (Collection) – The collection containing the surface entities to be expanded.
Example#
Untrimme the surface with ID 645#import hm import hm.entities as ent model = hm.Model() model.surfacemarkuntrim(surfacecollection=hm.Collection(model, ent.Surface, [645]))
Note
Some surfaces cannot be untrimmed, such as splines created from more than 4 lines. This function is used primarily in the cleanup of imported CAD data.