_values[3] = this.ratio = ratio;
this.n_points = n_points;
}
public Flower(double x, double y, double angle, double size, double ratio, int n_points) {
this(new Position(x, y), new Wrapping(angle, 0, 360), new Bounded(size, 0, MAX_SIZE), new Bounded(ratio, 0, 1), n_points);
}