95 {
96 auto *e = ctx.mEngine.get();
97 e->get_ready();
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;
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;
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;
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;
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}
T * assume_aligned(T *ptr) FL_NOEXCEPT
FASTLED_FORCE_INLINE fl::i32 render_value_fp_from_float(const render_parameters &anim, const fl::i32 *fade_lut, const fl::u8 *perm)