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

◆ draw()

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

Implements fl::IAnimartrix2Viz.

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

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.025;
17 e->timings.ratio[1] = 0.027;
18 e->timings.ratio[2] = 0.031;
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; x++) {
26 for (int y = 0; y < e->num_y; y++) {
27
28 e->animation.dist = e->distance[x][y] * (e->move.directional[0]);
29 e->animation.angle = e->polar_theta[x][y] + e->move.radial[0];
30 e->animation.z = 5;
31 e->animation.scale_x = 0.09;
32 e->animation.scale_y = 0.09;
33 e->animation.offset_z = 5 * e->move.linear[0];
34 e->animation.offset_x = 0;
35 e->animation.offset_y = 0;
36 float show1 = e->render_value(e->animation);
37
38 e->animation.dist = e->distance[x][y] * e->move.directional[1];
39 e->animation.angle = e->polar_theta[x][y] + e->move.radial[1];
40 e->animation.z = 50;
41 e->animation.scale_x = 0.07;
42 e->animation.scale_y = 0.07;
43 e->animation.offset_z = 5 * e->move.linear[1];
44 e->animation.offset_x = 0;
45 e->animation.offset_y = 0;
46 float show2 = e->render_value(e->animation);
47
48 e->animation.dist = e->distance[x][y] * e->move.directional[2];
49 e->animation.angle = e->polar_theta[x][y] + e->move.radial[2];
50 e->animation.z = 500;
51 e->animation.scale_x = 0.05;
52 e->animation.scale_y = 0.05;
53 e->animation.offset_z = 5 * e->move.linear[2];
54 e->animation.offset_x = 0;
55 e->animation.offset_y = 0;
56 float show3 = e->render_value(e->animation);
57
58 e->pixel.red = show1;
59 e->pixel.green = show2;
60 e->pixel.blue = show3;
61
62 e->pixel = e->rgb_sanity_check(e->pixel);
63
64 e->setPixelColorInternal(x, y, e->pixel);
65 }
66 }
67}

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