15 e->timings.master_speed = 0.03;
16 e->timings.ratio[0] = 0.0025;
17 e->timings.ratio[1] = 0.0027;
18 e->timings.ratio[2] = 0.029;
19 e->timings.ratio[3] = 0.033;
21 e->calculate_oscillators(e->timings);
23 for (
int x = 0;
x < e->num_x;
x++) {
24 for (
int y = 0;
y < e->num_y;
y++) {
26 e->animation.dist = e->distance[
x][
y] + 20 * e->move.directional[0];
27 e->animation.angle = e->move.noise_angle[0] + e->move.noise_angle[1] +
30 e->animation.scale_x = 0.1;
31 e->animation.scale_y = 0.1;
32 e->animation.offset_z = -10;
33 e->animation.offset_y = 20 * e->move.linear[2];
34 e->animation.offset_x = 10;
35 e->animation.low_limit = 0;
36 e->show1 = e->render_value(e->animation);
40 e->pixel.blue = e->show1;
42 e->pixel = e->rgb_sanity_check(e->pixel);
44 e->setPixelColorInternal(
x,
y, e->pixel);
59 const fl::u8 *perm = PERLIN_NOISE;
61 e->timings.master_speed = 0.03;
62 e->timings.ratio[0] = 0.0025;
63 e->timings.ratio[1] = 0.0027;
64 e->timings.ratio[2] = 0.029;
65 e->timings.ratio[3] = 0.033;
67 e->calculate_oscillators(e->timings);
69 for (
int x = 0;
x < e->num_x;
x++) {
70 for (
int y = 0;
y < e->num_y;
y++) {
72 e->animation.dist = e->distance[
x][
y] + 20 * e->move.directional[0];
73 e->animation.angle = e->move.noise_angle[0] + e->move.noise_angle[1] +
76 e->animation.scale_x = 0.1;
77 e->animation.scale_y = 0.1;
78 e->animation.offset_z = -10;
79 e->animation.offset_y = 20 * e->move.linear[2];
80 e->animation.offset_x = 10;
81 e->animation.low_limit = 0;
86 e->pixel.blue = e->show1;
88 e->pixel = e->rgb_sanity_check(e->pixel);
90 e->setPixelColorInternal(
x,
y, e->pixel);
fl::unique_ptr< Engine > mEngine