GetNodeNumber
Description Find the node number corresponding to a given set of coordinates.
Parameters
- x_y_z_coordinates (tuple): A tuple of (x, y, z) coordinates.
Returns int: Node number at the given coordinates.
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
node = geometry.GetNodeNumber((3.0, 0.0, 0.0))
print(node)