package Fractals.PythagorasTree; /** * Created by Christian on 11.02.2015. */ public class PythagorasTreeSeed { public double size; public int loopSize; public int depth; public double angle; public PythagorasTree.PythagorasTreeVariant variant; public PythagorasTreeSeed(double size, int loopSize, int depth, double angle, PythagorasTree.PythagorasTreeVariant variant) { this.size = size; this.loopSize = loopSize; this.depth = depth; this.angle = angle; this.variant = variant; } }