GetPhysicalMemberUniqueID
Description Get the unique identifier for a given physical member.
Parameters
- p_member (int): The physical member number.
Returns int: Unique ID associated with the physical member.
Example To use this function see the following example:
from openstaad import Geometry
# Instanciate the Geometry module
geometry= Geometry()
#Execute the function from geometry module
unique_id = geometry.GetPhysicalMemberUniqueID(1)
print(unique_id)