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

◆ draw()

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

Implements fl::IAnimartrix2Viz.

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

11 {
12 auto *e = ctx.mEngine.get();
13 e->get_ready();
14
15 e->timings.master_speed = 0.01;
16 e->timings.ratio[0] = 1;
17 e->timings.ratio[1] = 1.1;
18 e->timings.ratio[2] = 1.2;
19
20 e->timings.offset[1] = 100;
21 e->timings.offset[2] = 200;
22 e->timings.offset[3] = 300;
23
24 e->calculate_oscillators(e->timings);
25
26 for (int x = 0; x < e->num_x; x++) {
27 for (int y = 0; y < e->num_y; y++) {
28 e->animation.angle = 5;
29 e->animation.scale_x = 0.2;
30 e->animation.scale_y = 0.2;
31 e->animation.scale_z = 1;
32 e->animation.dist = e->distance[x][y];
33 e->animation.offset_y = -e->move.linear[0];
34 e->animation.offset_x = 0;
35 float show1 = e->render_value(e->animation);
36
37 e->animation.angle = 10;
38 e->animation.dist = e->distance[x][y];
39 e->animation.offset_y = -e->move.linear[1];
40 float show2 = e->render_value(e->animation);
41
42 e->animation.angle = 12;
43 e->animation.dist = e->distance[x][y];
44 e->animation.offset_y = -e->move.linear[2];
45 float show3 = e->render_value(e->animation);
46
47 e->pixel.red = show1;
48 e->pixel.green = show2 / 4;
49 e->pixel.blue = show3 / 4;
50
51 e->pixel = e->rgb_sanity_check(e->pixel);
52 e->setPixelColorInternal(x, y, e->pixel);
53 }
54 }
55}

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