pythagoreantree/src/DrawingTools.java
Jan Christian Grünhage dfd1841e2f PythagorasTree impementation, not working
New pythagoras Tree implementation, not fully working yet
2015-02-10 17:51:44 +01:00

13 lines
269 B
Java

import ch.aplu.turtle.Turtle;
/**
* Created by Christian on 10.02.2015.
*/
public class DrawingTools {
public static void drawSquare(Turtle turtle, double size) {
for (int i = 0; i < 4; i++) {
turtle.forward(size).left(90);
}
}
}