73 {
74 auto *e = ctx.mEngine.get();
75 e->get_ready();
78 const fl::u8 *perm = PERLIN_NOISE;
79
80 e->timings.master_speed = 0.0015;
81 e->timings.ratio[0] = 4;
82 e->timings.ratio[1] = 1;
83 e->timings.ratio[2] = 1;
84 e->timings.ratio[3] = 0.05;
85 e->timings.ratio[4] = 0.6;
86 e->timings.offset[0] = 0;
87 e->timings.offset[1] = 100;
88 e->timings.offset[2] = 200;
89 e->timings.offset[3] = 300;
90 e->timings.offset[4] = 400;
91
92 e->calculate_oscillators(e->timings);
93
94 for (
int x = 0;
x < e->num_x;
x++) {
95 for (
int y = 0;
y < e->num_y;
y++) {
96 e->animation.dist = e->distance[
x][
y] * 0.8;
97 e->animation.angle = e->polar_theta[
x][
y];
98 e->animation.scale_x = 0.15;
99 e->animation.scale_y = 0.12;
100 e->animation.scale_z = 0.01;
101 e->animation.offset_y = -e->move.linear[0];
102 e->animation.offset_x = 0;
103 e->animation.offset_z = 0;
104 e->animation.z = 30;
106
107 e->animation.offset_y = -e->move.linear[1];
108 e->animation.scale_x = 0.15;
109 e->animation.scale_y = 0.12;
110 e->animation.offset_x = show1 / 100;
111 e->animation.offset_y += show1 / 100;
113
114 e->animation.offset_y = -e->move.linear[2];
115 e->animation.scale_x = 0.15;
116 e->animation.scale_y = 0.12;
117 e->animation.offset_x = show2 / 100;
118 e->animation.offset_y += show2 / 100;
120
121 float linear = (
y) / (e->num_y - 1.f);
122
123 e->pixel.red = linear * show2;
124 e->pixel.green = 0.1 * linear * (show2 - show3);
125 e->pixel.blue = 0;
126
127 e->pixel = e->rgb_sanity_check(e->pixel);
128 e->setPixelColorInternal(
x,
y, e->pixel);
129 }
130 }
131}
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)