Model.verticesrelease#
- Model.verticesrelease(collection)#
This function is applied to a selection of points given by a collection. All selected fixed points are released. All the suppressed (blue), shared (green), and non-manifold (yellow) edges that share fixed points are released, generating free (red) edges.
- Parameters:
collection (Collection) – The collection containing the point entities to be released.
Example#
Unstitche selected points#import hm import hm.entities as ent model = hm.Model() # Creating the collection that contains the point to be released point_collection = hm.CollectionByInteractiveSelection(model, ent.Point) model.verticesrelease(collection=point_collection)