protected void updateNodeScreenPositions() {
synchronized (m_graph) {
Point2D graphPoint = new Point2D.Double();
Iterator nodes = m_graph.getVisibleNodes().iterator();
while (nodes.hasNext()) {
Node node = (Node) nodes.next();
JPowerGraphPoint point = m_nodePositions.get(node);
if (point == null) {
point = new JPowerGraphPoint(0, 0);
m_nodePositions.put(node, point);
}
graphPoint.setLocation(node.getX(), node.getY());
graphToScreenPoint(graphPoint, point);
}
}
}