72 {
73 auto *e = ctx.mEngine.get();
74 e->get_ready();
77 const fl::u8 *perm = PERLIN_NOISE;
78
79 e->timings.master_speed = 0.01;
80
81 float w = 0.7;
82
83 e->timings.ratio[0] = 0.0025;
84 e->timings.ratio[1] = 0.0027;
85 e->timings.ratio[2] = 0.029;
86 e->timings.ratio[3] = 0.33 * w;
87 e->timings.ratio[4] = 0.36 * w;
88
89 e->calculate_oscillators(e->timings);
90
91 for (
int x = 0;
x < e->num_x;
x++) {
92 for (
int y = 0;
y < e->num_y;
y++) {
93
94 float s = 0.8;
95
96 e->animation.dist = e->distance[
x][
y] +
97 fl::sinf(0.25 * e->distance[
x][
y] - e->move.radial[3]);
98 e->animation.angle = e->polar_theta[
x][
y];
99 e->animation.z = 5;
100 e->animation.scale_x = 0.1 * s;
101 e->animation.scale_y = 0.1 * s;
102 e->animation.offset_z = 0.1 * e->move.linear[0];
103 e->animation.offset_y = -20 * e->move.linear[0];
104 e->animation.offset_x = 10;
105 e->animation.low_limit = 0;
107
108 e->animation.dist = e->distance[
x][
y] +
109 fl::sinf(0.24 * e->distance[
x][
y] - e->move.radial[4]);
110 e->animation.angle = e->polar_theta[
x][
y];
111 e->animation.z = 10;
112 e->animation.scale_x = 0.1 * s;
113 e->animation.scale_y = 0.1 * s;
114 e->animation.offset_z = 0.1 * e->move.linear[1];
115 e->animation.offset_y = -20 * e->move.linear[1];
116 e->animation.offset_x = 10;
117 e->animation.low_limit = 0;
119
120 e->pixel.red = (e->show1 + e->show2);
121 e->pixel.green = ((e->show1 + e->show2) * 0.6) - 30;
122 e->pixel.blue = 0;
123
124 e->pixel = e->rgb_sanity_check(e->pixel);
125
126 e->setPixelColorInternal(
x,
y, e->pixel);
127 }
128 }
129}
T * assume_aligned(T *ptr) FL_NOEXCEPT
float sinf(float value) 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)