Model.orderchangetofirst#
- Model.orderchangetofirst(collection)#
Converts second order elements to first order.
- Parameters:
collection (Collection) – The collection containing the element entities to be converted.
Example#
Convert the elements with IDs 25,26,35 and 36#import hm import hm.entities as ent model = hm.Model() model.orderchangetofirst(collection=hm.Collection(model, ent.Element, [25, 26, 35, 36]))