コード例 #1
0
 public void printPathDepthsTree(Scene start) {
   tabs = "";
   for (PathDepth pd : start.getPathDepths()) {
     printChildren(pd);
   }
 }