74 {
75 auto *e = ctx.mEngine.get();
76 e->get_ready();
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;
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];
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];
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];
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}
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)