Reformatted code

This commit is contained in:
Jan Christian Grünhage 2016-05-05 22:44:50 +02:00
parent bec95321ac
commit 0177d8a9ae
No known key found for this signature in database
GPG key ID: 62BEE5EB8F370DC6
2 changed files with 6 additions and 9 deletions

View file

@ -10,10 +10,6 @@ public class PythagorasTreeSeed {
public double angle; public double angle;
public PythagorasTree.PythagorasTreeVariant variant; public PythagorasTree.PythagorasTreeVariant variant;
public PythagorasTreeSeed() {
}
public PythagorasTreeSeed(double size, int loopSize, int depth, double angle, PythagorasTree.PythagorasTreeVariant variant) { public PythagorasTreeSeed(double size, int loopSize, int depth, double angle, PythagorasTree.PythagorasTreeVariant variant) {
this.size = size; this.size = size;
this.loopSize = loopSize; this.loopSize = loopSize;

View file

@ -4,6 +4,7 @@ import Fractals.NumberCalculation.Fibonacci;
/** /**
* Class Fractals.PythagorasTree.PythagorasTriangle * Class Fractals.PythagorasTree.PythagorasTriangle
*
* @author Jan Christian Grünhage * @author Jan Christian Grünhage
*/ */
public class PythagorasTriangle { public class PythagorasTriangle {