Model.CE_DetermineConnectionType#
- Model.CE_DetermineConnectionType(collection, option)#
Determines the seam connection type, such as overlapped, lapped, T joint, and butt joint, and appends the information to connectors as metadata.
- Parameters:
collection (Collection) – The collection containing the input seam connector entities.
option (int) – Reserved for future development. Must be set to 1.
Example#
Determine the connection type for the seam connectors with IDs 101, 102 and 103#import hm import hm.entities as ent model = hm.Model() model.CE_DetermineConnectionType( collection=hm.Collection(model, ent.Connector, [101, 102, 103]), option=1 )