nodesAt method
Gets all nodes at a point.
Implementation
List<Node<T>> nodesAt(Offset point, {double radius = 0}) {
return _grid
.queryPoint(point, radius: radius)
.whereType<NodeSpatialItem>()
.map((item) => _nodes[item.nodeId])
.whereType<Node<T>>()
.toList();
}