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

◆ draw()

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

Implements fl::IAnimartrix2Viz.

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

95 {
96 auto *e = ctx.mEngine.get();
97 e->get_ready();
98 mState.ensureCache(e);
99 const fl::i32 *fade_lut = fl::assume_aligned<16>(mState.fade_lut);
100 const fl::u8 *perm = PERLIN_NOISE;
101
102 e->timings.master_speed = 0.005;
103 e->timings.ratio[0] = 0.025;
104 e->timings.ratio[1] = 0.027;
105 e->timings.ratio[2] = 0.031;
106 e->timings.ratio[3] = 0.0053;
107 e->timings.ratio[4] = 0.0056;
108 e->timings.ratio[5] = 0.0059;
109
110 e->calculate_oscillators(e->timings);
111
112 for (int x = 0; x < e->num_x; x++) {
113 for (int y = 0; y < e->num_y; y++) {
114
115 e->animation.dist = e->distance[x][y];
116 e->animation.angle = e->polar_theta[x][y];
117 e->animation.z = 5;
118 e->animation.scale_x = 0.09;
119 e->animation.scale_y = 0.09;
120 e->animation.offset_y = -30 * e->move.linear[0];
121 e->animation.offset_z = 0;
122 e->animation.offset_x = 0;
123 e->animation.low_limit = -1;
124 e->show1 = render_value_fp_from_float(e->animation, fade_lut, perm);
125
126 e->animation.dist = e->distance[x][y];
127 e->animation.angle = e->polar_theta[x][y];
128 e->animation.z = 50;
129 e->animation.scale_x = 0.09;
130 e->animation.scale_y = 0.09;
131 e->animation.offset_y = -30 * e->move.linear[1];
132 e->animation.offset_z = 0;
133 e->animation.offset_x = 0;
134 e->animation.low_limit = -1;
135 e->show2 = render_value_fp_from_float(e->animation, fade_lut, perm);
136
137 e->animation.dist = e->distance[x][y];
138 e->animation.angle = e->polar_theta[x][y] + 2 + (e->show1 / 255) * PI;
139 e->animation.z = 5;
140 e->animation.scale_x = 0.09;
141 e->animation.scale_y = 0.09;
142 e->animation.offset_y = -10 * e->move.linear[0];
143 e->animation.offset_z = 0;
144 e->animation.offset_x = 0;
145 e->animation.low_limit = 0;
146 e->show3 = render_value_fp_from_float(e->animation, fade_lut, perm);
147
148 e->animation.dist = e->distance[x][y];
149 e->animation.angle = e->polar_theta[x][y] + 2 + (e->show2 / 255) * PI;
150 ;
151 e->animation.z = 5;
152 e->animation.scale_x = 0.09;
153 e->animation.scale_y = 0.09;
154 e->animation.offset_y = -20 * e->move.linear[0];
155 e->animation.offset_z = 0;
156 e->animation.offset_x = 0;
157 e->animation.low_limit = 0;
158 e->show4 = render_value_fp_from_float(e->animation, fade_lut, perm);
159
160 e->show5 = e->screen(e->show4, e->show3);
161 e->show6 = e->colordodge(e->show5, e->show3);
162
163 float linear1 = y / 32.f;
164 float linear2 = (32 - y) / 32.f;
165
166 e->pixel.red = e->show5 * linear1;
167 e->pixel.green = 0;
168 e->pixel.blue = e->show6 * linear2;
169
170 e->pixel = e->rgb_sanity_check(e->pixel);
171
172 e->setPixelColorInternal(x, y, e->pixel);
173 }
174 }
175}
#define PI
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, PI, fl::render_value_fp_from_float(), fl::x, and fl::y.

+ Here is the call graph for this function: