35363738394041
_values[0] = this.center = center; _values[1] = this.angle = angle; } public PolarTheta(double x, double y, double angle) { this(new Position(x, y), new Wrapping(angle, -1, 1)); }
4041424344454647
this(new Position(x, y), new Wrapping(angle, -1, 1)); } public PolarTheta(Seed s) { super(2, 0); _values[0] = this.center = new Position(s); _values[1] = this.angle = new Wrapping(s, -1, 1); }
33343536373839
_values[0] = this.p0 = p0; _values[1] = this.p1 = p1; } public LinearGradient1(double x0, double y0, double x1, double y1) { this(new Position(x0, y0), new Position(x1, y1)); }
37383940414243
public LinearGradient1(double x0, double y0, double x1, double y1) { this(new Position(x0, y0), new Position(x1, y1)); } public LinearGradient1(Seed s) { this(new Position(s), new Position(s)); }
48495051525354
_values[1] = this.f1 = f1; _values[2] = this.size = size; } public Ellipse(double x0, double y0, double x1, double y1, double size) { this(new Position(x0, y0), new Position(x1, y1), new Bounded(size, MIN_SIZE, MAX_SIZE)); }
52535455565758
public Ellipse(double x0, double y0, double x1, double y1, double size) { this(new Position(x0, y0), new Position(x1, y1), new Bounded(size, MIN_SIZE, MAX_SIZE)); } public Ellipse(Seed s) { this(new Position(s), new Position(s), new Bounded(s, MIN_SIZE, MAX_SIZE)); }
47484950515253545556
_values[2] = this.height = h; _values[3] = this.angle = angle; } public RadialGradient(double x, double y, double w, double h, double angle) { this(new Position(x, y), new Bounded(w, MIN_SIZE, MAX_SIZE), new Bounded(h, MIN_SIZE, MAX_SIZE), new Wrapping(angle, MIN_ANGLE, MAX_ANGLE)); }
54555657585960616263
new Bounded(h, MIN_SIZE, MAX_SIZE), new Wrapping(angle, MIN_ANGLE, MAX_ANGLE)); } public RadialGradient(Seed s) { this(new Position(s), new Bounded(s, MIN_SIZE, MAX_SIZE), new Bounded(s, MIN_SIZE, MAX_SIZE), new Wrapping(s, MIN_ANGLE, MAX_ANGLE)); }
44454647484950515253
_values[2] = this.b = b; _children[0] = v; } public Spiral(double x, double y, double n, double b, OperationNode v) { this(new Position(x, y), new Bounded(n, MIN_N, MAX_N), new Bounded(b, MIN_B, MAX_B), v); }
51525354555657585960
new Bounded(b, MIN_B, MAX_B), v); } public Spiral(Seed s) { this(new Position(s), new Bounded(s, MIN_N, MAX_N), new Bounded(s, MIN_B, MAX_B), null); }