Removed PythagorasTree.PythagorasTreeVariant attribute from Pythagoras Triangle, because it is not needed after construction anymore.

Also, @author Tag added to class javadoc
This commit is contained in:
Jan Christian Grünhage 2015-02-11 10:44:22 +01:00
parent bce50adcc5
commit b5ba27ce91

View file

@ -1,12 +1,12 @@
/**
* Created by Christian on 10.02.2015.
* Class PythagorasTriangle
* @author Jan Christian Grünhage
*/
public class PythagorasTriangle {
private double leftSizeFactor;
private double leftAngle;
private double rightSizeFactor;
private double rightAngle;
private PythagorasTree.PythagorasTreeVariant variant;
public PythagorasTriangle(PythagorasTree.PythagorasTreeVariant variant, int momentaryDepth, Numbers numbers, Double angle) {