Model.unsmoothelements#
- Model.unsmoothelements(faceindex)#
From within the automeshing module, undoes the last operation of the
Model.smoothelements()function for the specified face.- Parameters:
faceindex (unsigned int) – The index of the face into the particular surface under consideration.
Example#
Undo the last operation ofModel.smoothelements()function for the face with index 1#import hm import hm.entities as ent model = hm.Model() model.unsmoothelements(faceindex=1)