GetBeamsConnectedAtNode
Description Retrieve a list of beams connected to a specific node.
Parameters
- node (int): Node number.
Returns list: List of beam numbers connected at the node.
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
beams = geometry.GetBeamsConnectedAtNode(7)
print(beams)