copySymDepths method

void copySymDepths(
  1. DirectedEdge de
)

Implementation

void copySymDepths(DirectedEdge de) {
  DirectedEdge sym = de.getSym();
  sym.setDepth(Position.LEFT, de.getDepth(Position.RIGHT));
  sym.setDepth(Position.RIGHT, de.getDepth(Position.LEFT));
}