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

◆ draw()

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

Implements fl::IAnimartrix2Viz.

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

11 {
12 auto *e = ctx.mEngine.get();
13 e->get_ready();
14
15 e->timings.master_speed = 0.02;
16 e->timings.ratio[0] = 0.0025;
17 e->timings.ratio[1] = 0.0027;
18 e->timings.ratio[2] = 0.0031;
19 e->timings.ratio[3] = 0.0033;
20 e->timings.ratio[4] = 0.0036;
21 e->timings.ratio[5] = 0.0039;
22
23 e->calculate_oscillators(e->timings);
24
25 for (int x = 0; x < e->num_x / 2; x++) {
26 for (int y = 0; y < e->num_y / 2; y++) {
27
28 e->animation.dist = e->distance[x][y];
29 e->animation.angle = e->polar_theta[x][y] + 5 * e->move.noise_angle[0];
30 e->animation.z = 5;
31 e->animation.scale_x = 0.1;
32 e->animation.scale_y = 0.1;
33 e->animation.offset_z = 50 * e->move.linear[0];
34 e->animation.offset_x = 150 * e->move.directional[0];
35 e->animation.offset_y = 150 * e->move.directional[1];
36 float show1 = e->render_value(e->animation);
37
38 e->animation.dist = e->distance[x][y];
39 e->animation.angle = e->polar_theta[x][y] + 4 * e->move.noise_angle[1];
40 e->animation.z = 15;
41 e->animation.scale_x = 0.15;
42 e->animation.scale_y = 0.15;
43 e->animation.offset_z = 50 * e->move.linear[1];
44 e->animation.offset_x = 150 * e->move.directional[1];
45 e->animation.offset_y = 150 * e->move.directional[2];
46 float show2 = e->render_value(e->animation);
47
48 e->animation.dist = e->distance[x][y];
49 e->animation.angle = e->polar_theta[x][y] + 5 * e->move.noise_angle[2];
50 e->animation.z = 25;
51 e->animation.scale_x = 0.1;
52 e->animation.scale_y = 0.1;
53 e->animation.offset_z = 50 * e->move.linear[2];
54 e->animation.offset_x = 150 * e->move.directional[2];
55 e->animation.offset_y = 150 * e->move.directional[3];
56 float show3 = e->render_value(e->animation);
57
58 e->animation.dist = e->distance[x][y];
59 e->animation.angle = e->polar_theta[x][y] + 5 * e->move.noise_angle[3];
60 e->animation.z = 35;
61 e->animation.scale_x = 0.15;
62 e->animation.scale_y = 0.15;
63 e->animation.offset_z = 50 * e->move.linear[3];
64 e->animation.offset_x = 150 * e->move.directional[3];
65 e->animation.offset_y = 150 * e->move.directional[4];
66 float show4 = e->render_value(e->animation);
67
68 e->animation.dist = e->distance[x][y];
69 e->animation.angle = e->polar_theta[x][y] + 5 * e->move.noise_angle[4];
70 e->animation.z = 45;
71 e->animation.scale_x = 0.2;
72 e->animation.scale_y = 0.2;
73 e->animation.offset_z = 50 * e->move.linear[4];
74 e->animation.offset_x = 150 * e->move.directional[4];
75 e->animation.offset_y = 150 * e->move.directional[5];
76 float show5 = e->render_value(e->animation);
77
78 e->pixel.red = show1 + show2;
79 e->pixel.green = show3 + show4;
80 e->pixel.blue = show5;
81
82 e->pixel = e->rgb_sanity_check(e->pixel);
83 e->setPixelColorInternal(x, y, e->pixel);
84
85 e->setPixelColorInternal((e->num_x - 1) - x, y, e->pixel);
86 e->setPixelColorInternal((e->num_x - 1) - x, (e->num_y - 1) - y, e->pixel);
87 e->setPixelColorInternal(x, (e->num_y - 1) - y, e->pixel);
88 }
89 }
90}

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