init method
Implementation
@override
void init(Graph? graph) {
var firstNode = getFirstNode(graph!);
firstWalk(graph, firstNode, 0, 0);
secondWalk(graph, firstNode, 0.0);
checkUnconnectedNotes(graph);
positionNodes(graph);
// shiftCoordinates(graph, shiftX, shiftY);
}