getNodeAt method

Node getNodeAt(
  1. dynamic x,
  2. dynamic y
)

Implementation

Node getNodeAt(x, y) {
  return this.nodes[y][x];
}