// NOP
}
public void edgeAdded(String graphId, long timeId, String edgeId,
String fromNodeId, String toNodeId, boolean directed) {
Point3 p0 = nodePos.get(fromNodeId);
Point3 p1 = nodePos.get(toNodeId);
if (p0 != null && p1 != null) {
out.printf(" <g id=\"%s\">%n", edgeId);
out.printf(" <line x1=\"%f\" y1=\"%f\" x2=\"%f\" y2=\"%f\"/>%n",
p0.x, p0.y, p1.x, p1.y);