* @param point
* the point
* @return <code>true</code> if the point is in the node
*/
public boolean isInNode(JGraphPane graphPane, ClusterNode node, JPowerGraphPoint point, int size, double theScale) {
JPowerGraphRectangle nodeScreenRectangle = new JPowerGraphRectangle(0, 0, 0, 0);
getNodeScreenBounds(graphPane, node, size, theScale, nodeScreenRectangle);
JPowerGraphRectangle labelScreenRectangle = new JPowerGraphRectangle(0, 0, 0, 0);
getLabelScreenBounds(graphPane, node, nodeScreenRectangle, labelScreenRectangle);
return nodeScreenRectangle.contains(point) || labelScreenRectangle.contains(point);
}