1
0
Fork 0

updated header information

This commit is contained in:
Jan Christian Grünhage 2015-02-11 21:53:16 +01:00
parent 254a02f89d
commit 5e998cc9b1
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class PythagorasTree {
public static boolean drawNextTree(PythagorasTreeQueue queue) {
PythagorasTree tree = queue.remove();
tree.turtle.getFrame().setTitle("Pythagoras Tree - Depth: " + tree.momentaryDepth + " - Target Depth: " + tree.maximalDepth);
tree.turtle.getFrame().setTitle("Pythagoras Tree - Depth: " + tree.momentaryDepth + " - Target Depth: " + tree.maximalDepth + " - Queuesize: " + queue.size());
tree.turtle.setPenColor(drawColor(tree.momentaryDepth, tree.maximalDepth));
tree.turtleState.returnToState(tree.turtle);