bool containsNode(PointNode node)

Returns whether or not the [Node] [node] is a member of this Graph.

Source

bool containsNode(PointNode node) {
  return this.containsPoint(node.location);
}