public void printPathDepthsTree(Scene start) {
   tabs = "";
   for (PathDepth pd : start.getPathDepths()) {
     printChildren(pd);
   }
 }