pythagoreantree/src/TurtleState.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

17 lines
316 B
Java

import ch.aplu.turtle.Turtle;
/**
* Created by Christian on 10.02.2015.
*/
public class TurtleState {
private double x;
private double y;
private double heading;
public TurtleState(Turtle turtle) {
x = turtle.getX();
y = turtle.getY();
heading = turtle.heading();
}
}