bool
ContainsPoint
(
)
Checks if point is inside the node when seen from above.
The borders of a node are considered to be inside the node.
Note that ContainsPointInGraphSpace is faster than this method as it avoids some coordinate transformations. If you are repeatedly calling this method on many different nodes but with the same point then you should consider transforming the point first and then calling ContainsPointInGraphSpace. Int3 p = (Int3)graph.transform.InverseTransform(point);
node.ContainsPointInGraphSpace(p);