FastLED 3.9.15
Loading...
Searching...
No Matches

◆ draw()

void fl::Complex_Kaleido_2::draw ( Context & ctx)
overridevirtual

Implements fl::IAnimartrix2Viz.

Definition at line 11 of file complex_kaleido_2.cpp.hpp.

11 {
12 auto *e = ctx.mEngine.get();
13 e->get_ready();
14
15 e->timings.master_speed = 0.009;
16 e->timings.ratio[0] = 0.025;
17 e->timings.ratio[1] = 0.027;
18 e->timings.ratio[2] = 0.031;
19 e->timings.ratio[3] = 0.0053;
20 e->timings.ratio[4] = 0.0056;
21 e->timings.ratio[5] = 0.0059;
22
23 e->calculate_oscillators(e->timings);
24
25 float size = 0.5;
26
27 for (int x = 0; x < e->num_x; x++) {
28 for (int y = 0; y < e->num_y; y++) {
29
30 e->animation.dist = e->distance[x][y];
31 e->animation.angle = 5 * e->polar_theta[x][y] + 10 * e->move.radial[0] +
32 e->animation.dist / 2;
33 e->animation.z = 5;
34 e->animation.scale_x = 0.07 * size;
35 e->animation.scale_y = 0.07 * size;
36 e->animation.offset_z = 0;
37 e->animation.offset_x = -30 * e->move.linear[0];
38 e->animation.offset_y = 0;
39 e->animation.low_limit = 0;
40 e->show1 = e->render_value(e->animation);
41
42 e->animation.dist = e->distance[x][y];
43 e->animation.angle = -5 * e->polar_theta[x][y] + 12 * e->move.radial[1] +
44 e->animation.dist / 2;
45 e->animation.z = 500;
46 e->animation.scale_x = 0.07 * size;
47 e->animation.scale_y = 0.07 * size;
48 e->animation.offset_z = 0;
49 e->animation.offset_x = -30 * e->move.linear[1];
50 e->animation.offset_y = 0;
51 e->animation.low_limit = 0;
52 e->show2 = e->render_value(e->animation);
53
54 e->animation.dist = e->distance[x][y];
55 e->animation.angle = -5 * e->polar_theta[x][y] + 12 * e->move.radial[2] +
56 e->animation.dist / 2;
57 e->animation.z = 500;
58 e->animation.scale_x = 0.05 * size;
59 e->animation.scale_y = 0.05 * size;
60 e->animation.offset_z = 0;
61 e->animation.offset_x = -40 * e->move.linear[2];
62 e->animation.offset_y = 0;
63 e->animation.low_limit = 0;
64 e->show3 = e->render_value(e->animation);
65
66 e->animation.dist = e->distance[x][y];
67 e->animation.angle = 5 * e->polar_theta[x][y] + 12 * e->move.radial[3] +
68 e->animation.dist / 2;
69 e->animation.z = 500;
70 e->animation.scale_x = 0.09 * size;
71 e->animation.scale_y = 0.09 * size;
72 e->animation.offset_z = 0;
73 e->animation.offset_x = -35 * e->move.linear[3];
74 e->animation.offset_y = 0;
75 e->animation.low_limit = 0;
76 e->show4 = e->render_value(e->animation);
77
78 e->show5 = e->screen(e->show4, e->show3);
79 e->show6 = e->colordodge(e->show2, e->show3);
80
81 float radius = e->radial_filter_radius;
82 float radial = (radius - e->distance[x][y]) / e->distance[x][y];
83
84 e->pixel.red = radial * (e->show1 + e->show2);
85 e->pixel.green = 0.3 * radial * e->show6;
86 e->pixel.blue = radial * e->show5;
87
88 e->pixel = e->rgb_sanity_check(e->pixel);
89
90 e->setPixelColorInternal(x, y, e->pixel);
91 }
92 }
93}

References fl::Context::mEngine, fl::x, and fl::y.