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

◆ draw()

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

Implements fl::IAnimartrix2Viz.

Definition at line 74 of file rotating_blob.cpp.hpp.

74 {
75 auto *e = ctx.mEngine.get();
76 e->get_ready();
77 mState.ensureCache(e);
78 const fl::i32 *fade_lut = fl::assume_aligned<16>(mState.fade_lut);
79 const fl::u8 *perm = PERLIN_NOISE;
80
81 e->timings.master_speed = 0.01;
82 e->timings.ratio[0] = 0.1;
83 e->timings.ratio[1] = 0.03;
84 e->timings.ratio[2] = 0.03;
85 e->timings.ratio[3] = 0.03;
86
87 e->timings.offset[1] = 10;
88 e->timings.offset[2] = 20;
89 e->timings.offset[3] = 30;
90
91 e->calculate_oscillators(e->timings);
92
93 for (int x = 0; x < e->num_x; x++) {
94 for (int y = 0; y < e->num_y; y++) {
95 e->animation.scale_x = 0.05;
96 e->animation.scale_y = 0.05;
97 e->animation.offset_x = 0;
98 e->animation.offset_y = 0;
99 e->animation.offset_z = 100;
100 e->animation.angle = e->polar_theta[x][y] + e->move.radial[0];
101 e->animation.dist = e->distance[x][y];
102 e->animation.z = e->move.linear[0];
103 e->animation.low_limit = -1;
104 float show1 = render_value_fp_from_float(e->animation, fade_lut, perm);
105
106 e->animation.angle =
107 e->polar_theta[x][y] - e->move.radial[1] + show1 / 512.0;
108 e->animation.dist = e->distance[x][y] * show1 / 255.0;
109 e->animation.low_limit = 0;
110 e->animation.z = e->move.linear[1];
111 float show2 = render_value_fp_from_float(e->animation, fade_lut, perm);
112
113 e->animation.angle =
114 e->polar_theta[x][y] - e->move.radial[2] + show1 / 512.0;
115 e->animation.dist = e->distance[x][y] * show1 / 220.0;
116 e->animation.z = e->move.linear[2];
117 float show3 = render_value_fp_from_float(e->animation, fade_lut, perm);
118
119 e->animation.angle =
120 e->polar_theta[x][y] - e->move.radial[3] + show1 / 512.0;
121 e->animation.dist = e->distance[x][y] * show1 / 200.0;
122 e->animation.z = e->move.linear[3];
123 float show4 = render_value_fp_from_float(e->animation, fade_lut, perm);
124
125 e->pixel.red = (show2 + show4) / 2;
126 e->pixel.green = show3 / 6;
127 e->pixel.blue = 0;
128
129 e->pixel = e->rgb_sanity_check(e->pixel);
130 e->setPixelColorInternal(x, y, e->pixel);
131 }
132 }
133}
unsigned char u8
Definition s16x16x4.h:132
T * assume_aligned(T *ptr) FL_NOEXCEPT
Definition s16x16x4.h:126
FASTLED_FORCE_INLINE fl::i32 render_value_fp_from_float(const render_parameters &anim, const fl::i32 *fade_lut, const fl::u8 *perm)

References fl::fl::assume_aligned(), fl::Context::mEngine, mState, fl::render_value_fp_from_float(), fl::x, and fl::y.

+ Here is the call graph for this function: