GetMemberIncidence
Description Get the start and end node numbers for a given beam.
Parameters
- beam (int): Beam number.
Returns tuple: Start and end node numbers as a tuple (start, end).
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
start_node, end_node = geometry.GetMemberIncidence(1)
print(start_node,end_node)