Model.hm_getfilletfacesbyprofile#
- Model.hm_getfilletfacesbyprofile(collection)#
Returns the faces containing fillets with a selected profile edge.
- Parameters:
collection (Collection) – The collection containing the profile line entities that define the fillets.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:filletSurfaces (EntityList) - Entity Type:
Surface
Example#
Get the faces with fillets with a radius between 5 and 15#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_getfilletfacesbyprofile(collection=hm.Collection(model, ent.Line, [5, 15])) print("filletSurfaces", result.filletSurfaces)