GetNodeList
Description Retrieve a list of all node numbers in the model.
Parameters
- None
Returns list: List of all node numbers.
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
nodes = geometry.GetNodeList()
print(nodes)