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

◆ draw()

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

Implements fl::IAnimartrix2Viz.

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

11 {
12 auto *e = ctx.mEngine.get();
13 e->get_ready();
14
15 e->timings.master_speed = 0.005;
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 for (int x = 0; x < e->num_x; x++) {
26 for (int y = 0; y < e->num_y; y++) {
27
28 e->animation.dist = e->distance[x][y];
29 e->animation.angle = e->polar_theta[x][y];
30 e->animation.z = 5;
31 e->animation.scale_x = 0.09;
32 e->animation.scale_y = 0.09;
33 e->animation.offset_y = -30 * e->move.linear[0];
34 e->animation.offset_z = 0;
35 e->animation.offset_x = 0;
36 e->animation.low_limit = -1;
37 e->show1 = e->render_value(e->animation);
38
39 e->animation.dist = e->distance[x][y];
40 e->animation.angle = e->polar_theta[x][y];
41 e->animation.z = 50;
42 e->animation.scale_x = 0.09;
43 e->animation.scale_y = 0.09;
44 e->animation.offset_y = -30 * e->move.linear[1];
45 e->animation.offset_z = 0;
46 e->animation.offset_x = 0;
47 e->animation.low_limit = -1;
48 e->show2 = e->render_value(e->animation);
49
50 e->animation.dist = e->distance[x][y];
51 e->animation.angle = e->polar_theta[x][y] + 2 + (e->show1 / 255) * PI;
52 e->animation.z = 5;
53 e->animation.scale_x = 0.09;
54 e->animation.scale_y = 0.09;
55 e->animation.offset_y = -10 * e->move.linear[0];
56 e->animation.offset_z = 0;
57 e->animation.offset_x = 0;
58 e->animation.low_limit = 0;
59 e->show3 = e->render_value(e->animation);
60
61 e->animation.dist = e->distance[x][y];
62 e->animation.angle = e->polar_theta[x][y] + 2 + (e->show2 / 255) * PI;
63 ;
64 e->animation.z = 5;
65 e->animation.scale_x = 0.09;
66 e->animation.scale_y = 0.09;
67 e->animation.offset_y = -20 * e->move.linear[0];
68 e->animation.offset_z = 0;
69 e->animation.offset_x = 0;
70 e->animation.low_limit = 0;
71 e->show4 = e->render_value(e->animation);
72
73 e->show5 = e->screen(e->show4, e->show3);
74 e->show6 = e->colordodge(e->show5, e->show3);
75
76 float linear1 = y / 32.f;
77 float linear2 = (32 - y) / 32.f;
78
79 e->pixel.red = e->show5 * linear1;
80 e->pixel.green = 0;
81 e->pixel.blue = e->show6 * linear2;
82
83 e->pixel = e->rgb_sanity_check(e->pixel);
84
85 e->setPixelColorInternal(x, y, e->pixel);
86 }
87 }
88}
#define PI

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