11 {
12 auto *e = ctx.mEngine.get();
13 e->get_ready();
14
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;
20
21 e->calculate_oscillators(e->timings);
22
23 for (
int x = 0;
x < e->num_x;
x++) {
24 for (
int y = 0;
y < e->num_y;
y++) {
25
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] +
29 e->animation.z = 5;
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);
37
38 e->pixel.red = 0;
39 e->pixel.green = 0;
40 e->pixel.blue = e->show1;
41
42 e->pixel = e->rgb_sanity_check(e->pixel);
43
44 e->setPixelColorInternal(
x,
y, e->pixel);
45 }
46 }
47}