updateIM method

void updateIM(
  1. IntersectionMatrix im
)

Update the IM with the contribution for the EdgeStubs around the node.

Implementation

void updateIM(IntersectionMatrix im) {
  for (Iterator it = iterator(); it.moveNext();) {
    EdgeEndBundle esb = it.current as EdgeEndBundle;
    esb.updateIM(im);
  }
}