154 float speed_factor = 1;
156 float radial_filter_radius = 23.0;
170 unsigned long a, b, c;
172 float show1, show2, show3, show4, show5, show6, show7, show8, show9, show0;
176 ANIMartRIX(
int w,
int h) { this->init(w, h); }
180 virtual uint16_t xyMap(uint16_t x, uint16_t y) = 0;
182 uint32_t currentTime = 0;
183 void setTime(uint32_t t) { currentTime = t; }
184 uint32_t getTime() {
return currentTime ? currentTime : millis(); }
187 void init(
int w,
int h) {
196 this->radial_filter_radius = 11;
198 this->radial_filter_radius = 23;
200 render_polar_lookup_table(
205 timings.master_speed = 0.01;
217 float subtract(
float &a,
float &b) {
return a - b; }
219 float multiply(
float &a,
float &b) {
return a * b / 255.f; }
224 float colorburn(
float &a,
float &b) {
226 return (1 - ((1 - a / 255.f) / (b / 255.f))) * 255.f;
231 float add(
float &a,
float &b) {
return a + b; }
235 float screen(
float &a,
float &b) {
237 return (1 - (1 - a / 255.f) * (1 - b / 255.f)) * 255.f;
240 float colordodge(
float &a,
float &b) {
return (a / (255.f - b)) * 255.f; }
248 float fade(
float t) {
return t * t * t * (t * (t * 6 - 15) + 10); }
249 float lerp(
float t,
float a,
float b) {
return a + t * (b - a); }
250 float grad(
int hash,
float x,
float y,
float z) {
252 float u = h < 8 ? x : y,
254 : h == 12 || h == 14 ? x
256 return ((h & 1) == 0 ? u : -u) + ((h & 2) == 0 ? v : -v);
260 float pnoise(
float x,
float y,
float z) {
262 int X = (int)floorf(x) & 255,
263 Y = (int)floorf(y) & 255,
264 Z = (int)floorf(z) & 255;
271 int A =
P(X) + Y, AA =
P(A) + Z,
273 B =
P(X + 1) + Y, BA =
P(B) + Z,
278 lerp(u, grad(
P(AA), x, y, z),
279 grad(
P(BA), x - 1, y, z)),
280 lerp(u, grad(
P(AB), x, y - 1, z),
281 grad(
P(BB), x - 1, y - 1, z))),
283 lerp(u, grad(
P(AA + 1), x, y, z - 1),
284 grad(
P(BA + 1), x - 1, y, z - 1)),
285 lerp(u, grad(
P(AB + 1), x, y - 1, z - 1),
286 grad(
P(BB + 1), x - 1, y - 1, z - 1))));
289 void calculate_oscillators(oscillators &timings) {
291 double runtime = getTime() * timings.master_speed *
294 for (
int i = 0; i < num_oscillators; i++) {
297 (runtime + timings.offset[i]) *
301 move.radial[i] = fmodf(move.linear[i],
305 move.directional[i] =
306 sinf(move.radial[i]);
309 move.noise_angle[i] =
312 pnoise(move.linear[i], 0,
317 void run_default_oscillators(
float master_speed = 0.005) {
318 timings.master_speed = master_speed;
320 timings.ratio[0] = 1;
322 timings.ratio[1] = 2;
323 timings.ratio[2] = 3;
324 timings.ratio[3] = 4;
325 timings.ratio[4] = 5;
326 timings.ratio[5] = 6;
327 timings.ratio[6] = 7;
328 timings.ratio[7] = 8;
329 timings.ratio[8] = 9;
330 timings.ratio[9] = 10;
332 timings.offset[0] = 000;
333 timings.offset[1] = 100;
334 timings.offset[2] = 200;
335 timings.offset[3] = 300;
336 timings.offset[4] = 400;
337 timings.offset[5] = 500;
338 timings.offset[6] = 600;
339 timings.offset[7] = 700;
340 timings.offset[8] = 800;
341 timings.offset[9] = 900;
343 calculate_oscillators(timings);
350 float render_value(render_parameters &animation) {
354 float newx = (animation.offset_x + animation.center_x -
355 (cosf(animation.angle) * animation.dist)) *
357 float newy = (animation.offset_y + animation.center_y -
358 (sinf(animation.angle) * animation.dist)) *
360 float newz = (animation.offset_z + animation.z) * animation.scale_z;
364 float raw_noise_field_value = pnoise(newx, newy, newz);
371 if (raw_noise_field_value < animation.low_limit)
372 raw_noise_field_value = animation.low_limit;
373 if (raw_noise_field_value > animation.high_limit)
374 raw_noise_field_value = animation.high_limit;
376 float scaled_noise_value =
377 map_float(raw_noise_field_value, animation.low_limit,
378 animation.high_limit, 0, 255);
380 return scaled_noise_value;
386 void render_polar_lookup_table(
float cx,
float cy) {
390 for (
int xx = 0; xx < num_x; xx++) {
391 for (
int yy = 0; yy < num_y; yy++) {
396 distance[xx][yy] = hypotf(dx, dy);
397 polar_theta[xx][yy] = atan2f(dy, dx);
405 float map_float(
float x,
float in_min,
float in_max,
float out_min,
409 (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
410 if (result < out_min)
412 if (result > out_max)
437 rgb rgb_sanity_check(rgb &pixel) {
455 if (pixel.green > 255)
457 if (pixel.blue > 255)
470 virtual void setPixelColorInternal(
int x,
int y, rgb pixel) = 0;
474 void logOutput() { b = micros(); }
476 void logFrame() { c = micros(); }
482 void report_performance() {
487 int fps = 1000000 / total;
488 int kpps = (fps * num_x * num_y) / 1000;
490 ANIMARTRIX_PRINT(fps);
491 ANIMARTRIX_PRINT(
" fps ");
492 ANIMARTRIX_PRINT(kpps);
493 ANIMARTRIX_PRINT(
" kpps @");
494 ANIMARTRIX_PRINT(num_x * num_y);
495 ANIMARTRIX_PRINT(
" LEDs ");
496 ANIMARTRIX_PRINT(round(total));
497 ANIMARTRIX_PRINT(
" µs per frame waiting: ");
498 ANIMARTRIX_PRINT(round((calc * 100) / total));
499 ANIMARTRIX_PRINT(
"% rendering: ");
500 ANIMARTRIX_PRINT(round((push * 100) / total));
501 ANIMARTRIX_PRINT(
"% (");
502 ANIMARTRIX_PRINT(round(calc));
503 ANIMARTRIX_PRINT(
" + ");
504 ANIMARTRIX_PRINT(round(push));
505 ANIMARTRIX_PRINT(
" µs) Core-temp: ");
508 ANIMARTRIX_PRINT(
" °C\n");
513 void Rotating_Blob() {
517 timings.master_speed = 0.01;
518 timings.ratio[0] = 0.1;
519 timings.ratio[1] = 0.03;
520 timings.ratio[2] = 0.03;
521 timings.ratio[3] = 0.03;
523 timings.offset[1] = 10;
524 timings.offset[2] = 20;
525 timings.offset[3] = 30;
527 calculate_oscillators(
530 for (
int x = 0; x < num_x; x++) {
531 for (
int y = 0; y < num_y; y++) {
534 animation.scale_x = 0.05;
535 animation.scale_y = 0.05;
536 animation.offset_x = 0;
537 animation.offset_y = 0;
538 animation.offset_z = 100;
539 animation.angle = polar_theta[x][y] + move.radial[0];
540 animation.dist = distance[x][y];
541 animation.z = move.linear[0];
542 animation.low_limit = -1;
543 float show1 = render_value(animation);
546 polar_theta[x][y] - move.radial[1] + show1 / 512.0;
547 animation.dist = distance[x][y] * show1 / 255.0;
548 animation.low_limit = 0;
549 animation.z = move.linear[1];
550 float show2 = render_value(animation);
553 polar_theta[x][y] - move.radial[2] + show1 / 512.0;
554 animation.dist = distance[x][y] * show1 / 220.0;
555 animation.z = move.linear[2];
556 float show3 = render_value(animation);
559 polar_theta[x][y] - move.radial[3] + show1 / 512.0;
560 animation.dist = distance[x][y] * show1 / 200.0;
561 animation.z = move.linear[3];
562 float show4 = render_value(animation);
565 pixel.red = (show2 + show4) / 2;
566 pixel.green = show3 / 6;
569 pixel = rgb_sanity_check(pixel);
571 setPixelColorInternal(x, y, pixel);
576 void Chasing_Spirals() {
580 timings.master_speed = 0.01;
581 timings.ratio[0] = 0.1;
582 timings.ratio[1] = 0.13;
583 timings.ratio[2] = 0.16;
585 timings.offset[1] = 10;
586 timings.offset[2] = 20;
587 timings.offset[3] = 30;
589 calculate_oscillators(
592 for (
int x = 0; x < num_x; x++) {
593 for (
int y = 0; y < num_y; y++) {
597 3 * polar_theta[x][y] + move.radial[0] - distance[x][y] / 3;
598 animation.dist = distance[x][y];
599 animation.scale_z = 0.1;
600 animation.scale_y = 0.1;
601 animation.scale_x = 0.1;
602 animation.offset_x = move.linear[0];
603 animation.offset_y = 0;
604 animation.offset_z = 0;
606 float show1 = render_value(animation);
609 3 * polar_theta[x][y] + move.radial[1] - distance[x][y] / 3;
610 animation.dist = distance[x][y];
611 animation.offset_x = move.linear[1];
612 float show2 = render_value(animation);
615 3 * polar_theta[x][y] + move.radial[2] - distance[x][y] / 3;
616 animation.dist = distance[x][y];
617 animation.offset_x = move.linear[2];
618 float show3 = render_value(animation);
621 float radius = radial_filter_radius;
622 float radial_filter = (radius - distance[x][y]) / radius;
624 pixel.red = 3 * show1 * radial_filter;
625 pixel.green = show2 * radial_filter / 2;
626 pixel.blue = show3 * radial_filter / 4;
628 pixel = rgb_sanity_check(pixel);
630 setPixelColorInternal(x, y, pixel);
639 timings.master_speed = 0.01;
640 timings.ratio[0] = 1;
641 timings.ratio[1] = 1.1;
642 timings.ratio[2] = 1.2;
644 timings.offset[1] = 100;
645 timings.offset[2] = 200;
646 timings.offset[3] = 300;
648 calculate_oscillators(
651 for (
int x = 0; x < num_x; x++) {
652 for (
int y = 0; y < num_y; y++) {
656 animation.scale_x = 0.2;
657 animation.scale_y = 0.2;
658 animation.scale_z = 1;
659 animation.dist = distance[x][y];
660 animation.offset_y = -move.linear[0];
661 animation.offset_x = 0;
662 float show1 = render_value(animation);
665 animation.angle = 10;
667 animation.dist = distance[x][y];
668 animation.offset_y = -move.linear[1];
669 float show2 = render_value(animation);
672 animation.angle = 12;
674 animation.dist = distance[x][y];
675 animation.offset_y = -move.linear[2];
676 float show3 = render_value(animation);
680 pixel.green = show2 / 4;
681 pixel.blue = show3 / 4;
683 pixel = rgb_sanity_check(pixel);
685 setPixelColorInternal(x, y, pixel);
694 timings.master_speed = 0.01;
695 timings.ratio[0] = 2;
696 timings.ratio[1] = 2.1;
697 timings.ratio[2] = 1.2;
699 timings.offset[1] = 100;
700 timings.offset[2] = 200;
701 timings.offset[3] = 300;
703 calculate_oscillators(
706 for (
int x = 0; x < num_x; x++) {
707 for (
int y = 0; y < num_y; y++) {
710 animation.angle = polar_theta[x][y];
711 animation.scale_x = 0.1;
712 animation.scale_y = 0.1;
713 animation.scale_z = 0.1;
714 animation.dist = distance[x][y];
715 animation.offset_y = 0;
716 animation.offset_x = 0;
717 animation.z = 2 * distance[x][y] - move.linear[0];
718 float show1 = render_value(animation);
720 animation.angle = polar_theta[x][y];
721 animation.dist = distance[x][y];
722 animation.z = 2 * distance[x][y] - move.linear[1];
723 float show2 = render_value(animation);
730 pixel = rgb_sanity_check(pixel);
732 setPixelColorInternal(x, y, pixel);
737 void Center_Field() {
741 timings.master_speed = 0.01;
742 timings.ratio[0] = 1;
743 timings.ratio[1] = 1.1;
744 timings.ratio[2] = 1.2;
746 timings.offset[1] = 100;
747 timings.offset[2] = 200;
748 timings.offset[3] = 300;
750 calculate_oscillators(
753 for (
int x = 0; x < num_x; x++) {
754 for (
int y = 0; y < num_y; y++) {
757 animation.angle = polar_theta[x][y];
758 animation.scale_x = 0.07;
759 animation.scale_y = 0.07;
760 animation.scale_z = 0.1;
761 animation.dist = 5 * sqrtf(distance[x][y]);
762 animation.offset_y = move.linear[0];
763 animation.offset_x = 0;
765 float show1 = render_value(animation);
767 animation.angle = polar_theta[x][y];
768 animation.scale_x = 0.07;
769 animation.scale_y = 0.07;
770 animation.scale_z = 0.1;
771 animation.dist = 4 * sqrtf(distance[x][y]);
772 animation.offset_y = move.linear[0];
773 animation.offset_x = 0;
775 float show2 = render_value(animation);
782 pixel = rgb_sanity_check(pixel);
784 setPixelColorInternal(x, y, pixel);
789 void Distance_Experiment() {
793 timings.master_speed = 0.01;
794 timings.ratio[0] = 0.2;
795 timings.ratio[1] = 0.13;
796 timings.ratio[2] = 0.012;
798 timings.offset[1] = 100;
799 timings.offset[2] = 200;
800 timings.offset[3] = 300;
802 calculate_oscillators(
805 for (
int x = 0; x < num_x; x++) {
806 for (
int y = 0; y < num_y; y++) {
809 animation.dist = powf(distance[x][y], 0.5);
810 animation.angle = polar_theta[x][y] + move.radial[0];
811 animation.scale_x = 0.07;
812 animation.scale_y = 0.07;
813 animation.scale_z = 0.1;
814 animation.offset_y = move.linear[0];
815 animation.offset_x = 0;
816 animation.offset_z = 0;
818 float show1 = render_value(animation);
820 animation.dist = powf(distance[x][y], 0.6);
821 animation.angle = polar_theta[x][y] + move.noise_angle[2];
822 animation.scale_x = 0.07;
823 animation.scale_y = 0.07;
824 animation.scale_z = 0.1;
825 animation.offset_y = move.linear[1];
826 animation.offset_x = 0;
827 animation.offset_z = 0;
829 float show2 = render_value(animation);
832 pixel.red = show1 + show2;
836 pixel = rgb_sanity_check(pixel);
838 setPixelColorInternal(x, y, pixel);
847 timings.master_speed = 0.003;
848 timings.ratio[0] = 0.02;
849 timings.ratio[1] = 0.03;
850 timings.ratio[2] = 0.04;
851 timings.ratio[3] = 0.05;
852 timings.ratio[4] = 0.6;
853 timings.offset[0] = 0;
854 timings.offset[1] = 100;
855 timings.offset[2] = 200;
856 timings.offset[3] = 300;
857 timings.offset[4] = 400;
859 calculate_oscillators(
862 for (
int x = 0; x < num_x; x++) {
863 for (
int y = 0; y < num_y; y++) {
866 animation.dist = distance[x][y] * (2 + move.directional[0]) / 3;
867 animation.angle = 3 * polar_theta[x][y] +
868 3 * move.noise_angle[0] + move.radial[4];
869 animation.scale_x = 0.1;
870 animation.scale_y = 0.1;
871 animation.scale_z = 0.1;
872 animation.offset_y = 2 * move.linear[0];
873 animation.offset_x = 0;
874 animation.offset_z = 0;
875 animation.z = move.linear[0];
876 float show1 = render_value(animation);
878 animation.dist = distance[x][y] * (2 + move.directional[1]) / 3;
879 animation.angle = 4 * polar_theta[x][y] +
880 3 * move.noise_angle[1] + move.radial[4];
881 animation.offset_x = 2 * move.linear[1];
882 animation.z = move.linear[1];
883 float show2 = render_value(animation);
885 animation.dist = distance[x][y] * (2 + move.directional[2]) / 3;
886 animation.angle = 5 * polar_theta[x][y] +
887 3 * move.noise_angle[2] + move.radial[4];
888 animation.offset_y = 2 * move.linear[2];
889 animation.z = move.linear[2];
890 float show3 = render_value(animation);
892 animation.dist = distance[x][y] * (2 + move.directional[3]) / 3;
893 animation.angle = 4 * polar_theta[x][y] +
894 3 * move.noise_angle[3] + move.radial[4];
895 animation.offset_x = 2 * move.linear[3];
896 animation.z = move.linear[3];
897 float show4 = render_value(animation);
901 pixel.green = show3 * distance[x][y] / 10;
902 pixel.blue = (show2 + show4) / 2;
904 pixel = rgb_sanity_check(pixel);
906 setPixelColorInternal(x, y, pixel);
915 timings.master_speed = 0.002;
916 timings.ratio[0] = 0.02;
917 timings.ratio[1] = 0.03;
918 timings.ratio[2] = 0.04;
919 timings.ratio[3] = 0.05;
920 timings.ratio[4] = 0.6;
921 timings.offset[0] = 0;
922 timings.offset[1] = 100;
923 timings.offset[2] = 200;
924 timings.offset[3] = 300;
925 timings.offset[4] = 400;
927 calculate_oscillators(
930 for (
int x = 0; x < num_x; x++) {
931 for (
int y = 0; y < num_y; y++) {
934 animation.dist = distance[x][y] * (2 + move.directional[0]) / 3;
935 animation.angle = 2 * polar_theta[x][y] +
936 3 * move.noise_angle[0] + move.radial[4];
937 animation.scale_x = 0.1;
938 animation.scale_y = 0.1;
939 animation.scale_z = 0.1;
940 animation.offset_y = 2 * move.linear[0];
941 animation.offset_x = 0;
942 animation.offset_z = 0;
943 animation.z = move.linear[0];
944 float show1 = render_value(animation);
946 animation.dist = distance[x][y] * (2 + move.directional[1]) / 3;
947 animation.angle = 2 * polar_theta[x][y] +
948 3 * move.noise_angle[1] + move.radial[4];
949 animation.offset_x = 2 * move.linear[1];
950 animation.z = move.linear[1];
951 float show2 = render_value(animation);
953 animation.dist = distance[x][y] * (2 + move.directional[2]) / 3;
954 animation.angle = 2 * polar_theta[x][y] +
955 3 * move.noise_angle[2] + move.radial[4];
956 animation.offset_y = 2 * move.linear[2];
957 animation.z = move.linear[2];
958 float show3 = render_value(animation);
960 animation.dist = distance[x][y] * (2 + move.directional[3]) / 3;
961 animation.angle = 2 * polar_theta[x][y] +
962 3 * move.noise_angle[3] + move.radial[4];
963 animation.offset_x = 2 * move.linear[3];
964 animation.z = move.linear[3];
965 float show4 = render_value(animation);
969 pixel.green = show3 * distance[x][y] / 10;
970 pixel.blue = (show2 + show4) / 2;
972 pixel = rgb_sanity_check(pixel);
974 setPixelColorInternal(x, y, pixel);
983 timings.master_speed = 0.004;
984 timings.ratio[0] = 0.02;
985 timings.ratio[1] = 0.03;
986 timings.ratio[2] = 0.04;
987 timings.ratio[3] = 0.05;
988 timings.ratio[4] = 0.6;
989 timings.offset[0] = 0;
990 timings.offset[1] = 100;
991 timings.offset[2] = 200;
992 timings.offset[3] = 300;
993 timings.offset[4] = 400;
995 calculate_oscillators(
998 for (
int x = 0; x < num_x; x++) {
999 for (
int y = 0; y < num_y; y++) {
1002 animation.dist = distance[x][y] * (2 + move.directional[0]) / 3;
1003 animation.angle = 2 * polar_theta[x][y] +
1004 3 * move.noise_angle[0] + move.radial[4];
1005 animation.scale_x = 0.1;
1006 animation.scale_y = 0.1;
1007 animation.scale_z = 0.1;
1008 animation.offset_y = 2 * move.linear[0];
1009 animation.offset_x = 2 * move.linear[1];
1010 animation.offset_z = 0;
1011 animation.z = move.linear[0];
1012 float show1 = render_value(animation);
1014 animation.dist = distance[x][y] * (2 + move.directional[1]) / 3;
1015 animation.angle = 2 * polar_theta[x][y] +
1016 3 * move.noise_angle[1] + move.radial[4];
1017 animation.offset_x = 2 * move.linear[1];
1018 animation.offset_y = show1 / 20.0;
1019 animation.z = move.linear[1];
1020 float show2 = render_value(animation);
1022 animation.dist = distance[x][y] * (2 + move.directional[2]) / 3;
1023 animation.angle = 2 * polar_theta[x][y] +
1024 3 * move.noise_angle[2] + move.radial[4];
1025 animation.offset_y = 2 * move.linear[2];
1026 animation.offset_x = show2 / 20.0;
1027 animation.z = move.linear[2];
1028 float show3 = render_value(animation);
1030 animation.dist = distance[x][y] * (2 + move.directional[3]) / 3;
1031 animation.angle = 2 * polar_theta[x][y] +
1032 3 * move.noise_angle[3] + move.radial[4];
1033 animation.offset_x = 2 * move.linear[3];
1034 animation.offset_y = show3 / 20.0;
1035 animation.z = move.linear[3];
1036 float show4 = render_value(animation);
1039 float radius = radial_filter_radius;
1041 pixel.red = show1 * (y + 1) / num_y;
1042 pixel.green = show3 * distance[x][y] / 10;
1043 pixel.blue = (show2 + show4) / 2;
1044 if (distance[x][y] > radius) {
1050 pixel = rgb_sanity_check(pixel);
1052 setPixelColorInternal(x, y, pixel);
1061 timings.master_speed = 0.0015;
1062 timings.ratio[0] = 4;
1063 timings.ratio[1] = 1;
1064 timings.ratio[2] = 1;
1065 timings.ratio[3] = 0.05;
1066 timings.ratio[4] = 0.6;
1067 timings.offset[0] = 0;
1068 timings.offset[1] = 100;
1069 timings.offset[2] = 200;
1070 timings.offset[3] = 300;
1071 timings.offset[4] = 400;
1073 calculate_oscillators(
1076 for (
int x = 0; x < num_x; x++) {
1077 for (
int y = 0; y < num_y; y++) {
1080 animation.dist = distance[x][y] * 0.8;
1081 animation.angle = polar_theta[x][y];
1082 animation.scale_x = 0.15;
1083 animation.scale_y = 0.12;
1084 animation.scale_z = 0.01;
1085 animation.offset_y = -move.linear[0];
1086 animation.offset_x = 0;
1087 animation.offset_z = 0;
1089 float show1 = render_value(animation);
1091 animation.offset_y = -move.linear[1];
1092 animation.scale_x = 0.15;
1093 animation.scale_y = 0.12;
1094 animation.offset_x = show1 / 100;
1095 animation.offset_y += show1 / 100;
1097 float show2 = render_value(animation);
1099 animation.offset_y = -move.linear[2];
1100 animation.scale_x = 0.15;
1101 animation.scale_y = 0.12;
1102 animation.offset_x = show2 / 100;
1103 animation.offset_y += show2 / 100;
1105 float show3 = render_value(animation);
1108 float linear = (y) / (num_y - 1.f);
1110 pixel.red = linear * show2;
1111 pixel.green = 0.1 * linear * (show2 - show3);
1114 pixel = rgb_sanity_check(pixel);
1116 setPixelColorInternal(x, y, pixel);
1125 timings.master_speed = 0.000001;
1126 timings.ratio[0] = 0.4;
1127 timings.ratio[1] = 0.32;
1128 timings.ratio[2] = 0.10;
1129 timings.ratio[3] = 0.05;
1130 timings.ratio[4] = 0.6;
1131 timings.offset[0] = 0;
1132 timings.offset[1] = 100;
1133 timings.offset[2] = 200;
1134 timings.offset[3] = 300;
1135 timings.offset[4] = 400;
1137 calculate_oscillators(
1140 for (
int x = 0; x < num_x; x++) {
1141 for (
int y = 0; y < num_y; y++) {
1144 animation.dist = 0.3 * distance[x][y] * 0.8;
1145 animation.angle = 3 * polar_theta[x][y] + move.radial[2];
1146 animation.scale_x = 0.1 + (move.noise_angle[0]) / 10;
1148 0.1 + (move.noise_angle[1]) /
1150 animation.scale_z = 0.01;
1151 animation.offset_y = 0;
1152 animation.offset_x = 0;
1153 animation.offset_z = 100 * move.linear[0];
1155 float show1 = render_value(animation);
1157 animation.angle = 3;
1158 float show2 = render_value(animation);
1161 pixel.red = show1 * dist;
1162 pixel.green = (show1 - show2) * dist * 0.3;
1163 pixel.blue = (show2 - show1) * dist;
1165 if (distance[x][y] > 16) {
1171 pixel = rgb_sanity_check(pixel);
1173 setPixelColorInternal(y, x, pixel);
1184 timings.master_speed = 0.001;
1185 timings.ratio[0] = 3;
1186 timings.ratio[1] = 2;
1187 timings.ratio[2] = 1;
1188 timings.ratio[3] = 0.13;
1189 timings.ratio[4] = 0.15;
1190 timings.ratio[5] = 0.03;
1191 timings.ratio[6] = 0.025;
1192 timings.offset[0] = 0;
1193 timings.offset[1] = 100;
1194 timings.offset[2] = 200;
1195 timings.offset[3] = 300;
1196 timings.offset[4] = 400;
1197 timings.offset[5] = 500;
1198 timings.offset[6] = 600;
1200 calculate_oscillators(
1203 for (
int x = 0; x < num_x; x++) {
1204 for (
int y = 0; y < num_y; y++) {
1206 animation.dist = distance[x][y];
1208 polar_theta[x][y] + 2 * PI + move.noise_angle[5];
1209 animation.scale_x = 0.08;
1210 animation.scale_y = 0.08;
1211 animation.scale_z = 0.08;
1212 animation.offset_y = -move.linear[0];
1213 animation.offset_x = 0;
1214 animation.offset_z = 0;
1216 float show1 = render_value(animation);
1218 animation.dist = distance[x][y];
1220 polar_theta[x][y] + 2 * PI + move.noise_angle[6];
1222 animation.scale_x = 0.08;
1223 animation.scale_y = 0.08;
1224 animation.scale_z = 0.08;
1225 animation.offset_y = -move.linear[1];
1226 animation.offset_x = 0;
1227 animation.offset_z = 0;
1229 float show2 = render_value(animation);
1231 animation.angle = polar_theta[x][y] + show1 / 100 +
1232 move.noise_angle[3] + move.noise_angle[4];
1233 animation.dist = distance[x][y] + show2 / 50;
1234 animation.offset_y = -move.linear[2];
1236 animation.offset_y += show1 / 100;
1237 animation.offset_x += show2 / 100;
1239 float show3 = render_value(animation);
1241 animation.offset_y = 0;
1242 animation.offset_x = 0;
1244 float show4 = render_value(animation);
1247 pixel.green = show3 * show4 / 255;
1250 pixel = rgb_sanity_check(pixel);
1251 setPixelColorInternal(y, x, pixel);
1260 timings.master_speed = 0.0011;
1261 timings.ratio[0] = 1.5;
1262 timings.ratio[1] = 2.3;
1263 timings.ratio[2] = 3;
1264 timings.ratio[3] = 0.05;
1265 timings.ratio[4] = 0.2;
1266 timings.ratio[5] = 0.03;
1267 timings.ratio[6] = 0.025;
1268 timings.ratio[7] = 0.021;
1269 timings.ratio[8] = 0.027;
1270 timings.offset[0] = 0;
1271 timings.offset[1] = 100;
1272 timings.offset[2] = 200;
1273 timings.offset[3] = 300;
1274 timings.offset[4] = 400;
1275 timings.offset[5] = 500;
1276 timings.offset[6] = 600;
1278 calculate_oscillators(
1281 for (
int x = 0; x < num_x; x++) {
1282 for (
int y = 0; y < num_y; y++) {
1284 animation.dist = distance[x][y];
1285 animation.angle = 2 * polar_theta[x][y] + move.noise_angle[5] +
1286 move.directional[3] * move.noise_angle[6] *
1287 animation.dist / 10;
1288 animation.scale_x = 0.08;
1289 animation.scale_y = 0.08;
1290 animation.scale_z = 0.02;
1291 animation.offset_y = -move.linear[0];
1292 animation.offset_x = 0;
1293 animation.offset_z = 0;
1294 animation.z = move.linear[1];
1295 float show1 = render_value(animation);
1297 animation.angle = 2 * polar_theta[x][y] + move.noise_angle[7] +
1298 move.directional[5] * move.noise_angle[8] *
1299 animation.dist / 10;
1300 animation.offset_y = -move.linear[1];
1301 animation.z = move.linear[2];
1303 float show2 = render_value(animation);
1305 animation.angle = 2 * polar_theta[x][y] + move.noise_angle[6] +
1306 move.directional[6] * move.noise_angle[7] *
1307 animation.dist / 10;
1308 animation.offset_y = move.linear[2];
1309 animation.z = move.linear[0];
1310 float show3 = render_value(animation);
1314 pixel.red = f * (show1 + show2);
1315 pixel.green = f * (show1 - show2);
1316 pixel.blue = f * (show3 - show1);
1318 pixel = rgb_sanity_check(pixel);
1319 setPixelColorInternal(x, y, pixel);
1328 timings.master_speed = 0.0015;
1329 timings.ratio[0] = 1.5;
1330 timings.ratio[1] = 2.3;
1331 timings.ratio[2] = 3;
1332 timings.ratio[3] = 0.05;
1333 timings.ratio[4] = 0.2;
1334 timings.ratio[5] = 0.05;
1335 timings.ratio[6] = 0.055;
1336 timings.ratio[7] = 0.06;
1337 timings.ratio[8] = 0.027;
1338 timings.offset[0] = 0;
1339 timings.offset[1] = 100;
1340 timings.offset[2] = 200;
1341 timings.offset[3] = 300;
1342 timings.offset[4] = 400;
1343 timings.offset[5] = 500;
1344 timings.offset[6] = 600;
1346 calculate_oscillators(
1349 for (
int x = 0; x < num_x; x++) {
1350 for (
int y = 0; y < num_y; y++) {
1352 animation.dist = distance[x][y];
1353 animation.angle = 5 * polar_theta[x][y] + move.noise_angle[5] +
1354 move.directional[3] * move.noise_angle[6] *
1355 animation.dist / 10;
1356 animation.scale_x = 0.08;
1357 animation.scale_y = 0.08;
1358 animation.scale_z = 0.02;
1359 animation.offset_y = -move.linear[0];
1360 animation.offset_x = 0;
1361 animation.offset_z = 0;
1362 animation.z = move.linear[1];
1363 float show1 = render_value(animation);
1365 animation.angle = 6 * polar_theta[x][y] + move.noise_angle[7] +
1366 move.directional[5] * move.noise_angle[8] *
1367 animation.dist / 10;
1368 animation.offset_y = -move.linear[1];
1369 animation.z = move.linear[2];
1371 float show2 = render_value(animation);
1373 animation.angle = 6 * polar_theta[x][y] + move.noise_angle[6] +
1374 move.directional[6] * move.noise_angle[7] *
1375 animation.dist / 10;
1376 animation.offset_y = move.linear[2];
1377 animation.z = move.linear[0];
1378 animation.dist = distance[x][y] * 0.8;
1379 float show3 = render_value(animation);
1383 pixel.red = f * (show1 + show2);
1384 pixel.green = f * (show1 - show2);
1385 pixel.blue = f * (show3 - show1);
1387 pixel = rgb_sanity_check(pixel);
1388 setPixelColorInternal(y, x, pixel);
1396 run_default_oscillators(0.001);
1398 for (
int x = 0; x < num_x; x++) {
1399 for (
int y = 0; y < num_y; y++) {
1401 animation.dist = distance[x][y];
1402 animation.angle = polar_theta[x][y];
1404 animation.scale_x = 0.07 + move.directional[0] * 0.002;
1405 animation.scale_y = 0.07;
1407 animation.offset_y = -move.linear[0];
1408 animation.offset_x = 0;
1409 animation.offset_z = 0;
1412 animation.low_limit = -1;
1413 float show1 = render_value(animation);
1415 animation.offset_y = -move.linear[1];
1416 float show3 = render_value(animation);
1418 animation.offset_x = show3 / 20;
1419 animation.offset_y = -move.linear[0] / 2 + show1 / 70;
1420 animation.low_limit = 0;
1421 float show2 = render_value(animation);
1423 animation.offset_x = show3 / 20;
1424 animation.offset_y = -move.linear[0] / 2 + show1 / 70;
1426 float show4 = render_value(animation);
1428 float radius = radial_filter_radius;
1430 float radial = (radius - animation.dist) / animation.dist;
1432 float linear = (y + 1) / (num_y - 1.f);
1434 pixel.red = radial * show2;
1435 pixel.green = linear * radial * 0.3 * (show2 - show4);
1438 pixel = rgb_sanity_check(pixel);
1439 setPixelColorInternal(x, y, pixel);
1448 run_default_oscillators();
1449 timings.master_speed = 0.003;
1450 calculate_oscillators(timings);
1452 for (
int x = 0; x < num_x; x++) {
1453 for (
int y = 0; y < num_y; y++) {
1455 animation.dist = (distance[x][y] * distance[x][y]) / 2;
1456 animation.angle = polar_theta[x][y];
1458 animation.scale_x = 0.005;
1459 animation.scale_y = 0.005;
1461 animation.offset_y = -10 * move.linear[0];
1462 animation.offset_x = 0;
1463 animation.offset_z = 0;
1466 animation.low_limit = 0;
1467 float show1 = render_value(animation);
1471 pixel.red = show1 * linear;
1475 pixel = rgb_sanity_check(pixel);
1476 setPixelColorInternal(y, x, pixel);
1485 run_default_oscillators();
1486 timings.master_speed = 0.00005;
1487 calculate_oscillators(timings);
1489 for (
int x = 0; x < num_x; x++) {
1490 for (
int y = 0; y < num_y; y++) {
1493 sqrtf(distance[x][y]) * 0.7 * (move.directional[0] + 1.5);
1495 polar_theta[x][y] - move.radial[0] + distance[x][y] / 5;
1497 animation.scale_x = 0.11;
1498 animation.scale_y = 0.11;
1500 animation.offset_y = -50 * move.linear[0];
1501 animation.offset_x = 0;
1502 animation.offset_z = 0;
1504 animation.z = move.linear[0];
1505 animation.low_limit = -0.1;
1506 animation.high_limit = 1;
1507 float show1 = render_value(animation);
1509 animation.dist = animation.dist * 1.1;
1510 animation.angle += move.noise_angle[0] / 10;
1511 float show2 = render_value(animation);
1513 animation.dist = animation.dist * 1.1;
1514 animation.angle += move.noise_angle[1] / 10;
1516 float show3 = render_value(animation);
1518 float radius = radial_filter_radius;
1520 float radial = (radius - distance[x][y]) / distance[x][y];
1522 pixel.red = radial * show1;
1523 pixel.green = radial * (show1 - show2) / 6;
1524 pixel.blue = radial * (show1 - show3) / 5;
1526 pixel = rgb_sanity_check(pixel);
1527 setPixelColorInternal(y, x, pixel);
1532 void Polar_Waves() {
1536 timings.master_speed = 0.5;
1538 timings.ratio[0] = 0.0025;
1540 timings.ratio[1] = 0.0027;
1541 timings.ratio[2] = 0.0031;
1543 calculate_oscillators(timings);
1545 for (
int x = 0; x < num_x; x++) {
1546 for (
int y = 0; y < num_y; y++) {
1548 animation.dist = (distance[x][y]);
1550 polar_theta[x][y] - animation.dist * 0.1 + move.radial[0];
1551 animation.z = (animation.dist * 1.5) - 10 * move.linear[0];
1552 animation.scale_x = 0.15;
1553 animation.scale_y = 0.15;
1554 animation.offset_x = move.linear[0];
1556 float show1 = render_value(animation);
1558 polar_theta[x][y] - animation.dist * 0.1 + move.radial[1];
1559 animation.z = (animation.dist * 1.5) - 10 * move.linear[1];
1560 animation.offset_x = move.linear[1];
1562 float show2 = render_value(animation);
1564 polar_theta[x][y] - animation.dist * 0.1 + move.radial[2];
1565 animation.z = (animation.dist * 1.5) - 10 * move.linear[2];
1566 animation.offset_x = move.linear[2];
1568 float show3 = render_value(animation);
1570 float radius = radial_filter_radius;
1572 float radial = (radius - distance[x][y]) / distance[x][y];
1574 pixel.red = radial * show1;
1575 pixel.green = radial * show2;
1576 pixel.blue = radial * show3;
1578 pixel = rgb_sanity_check(pixel);
1579 setPixelColorInternal(y, x, pixel);
1588 timings.master_speed = 0.2;
1590 timings.ratio[0] = 0.0025;
1592 timings.ratio[1] = 0.0027;
1593 timings.ratio[2] = 0.0031;
1594 timings.ratio[3] = 0.0033;
1596 timings.ratio[4] = 0.0036;
1597 timings.ratio[5] = 0.0039;
1599 calculate_oscillators(timings);
1601 for (
int x = 0; x < num_x; x++) {
1602 for (
int y = 0; y < num_y; y++) {
1604 animation.dist = distance[x][y];
1605 animation.angle = polar_theta[x][y] + move.radial[0] +
1606 move.noise_angle[0] + move.noise_angle[3];
1607 animation.z = (sqrtf(animation.dist));
1608 animation.scale_x = 0.1;
1609 animation.scale_y = 0.1;
1610 animation.offset_z = 10;
1611 animation.offset_x = 10 * move.linear[0];
1612 float show1 = render_value(animation);
1614 animation.angle = polar_theta[x][y] + move.radial[1] +
1615 move.noise_angle[1] + move.noise_angle[4];
1616 animation.offset_x = 11 * move.linear[1];
1617 animation.offset_z = 100;
1618 float show2 = render_value(animation);
1620 animation.angle = polar_theta[x][y] + move.radial[2] +
1621 move.noise_angle[2] + move.noise_angle[5];
1622 animation.offset_x = 12 * move.linear[2];
1623 animation.offset_z = 300;
1624 float show3 = render_value(animation);
1626 float radius = radial_filter_radius;
1628 float radial = (radius - distance[x][y]) / distance[x][y];
1630 pixel.red = radial * show1;
1631 pixel.green = radial * show2;
1632 pixel.blue = radial * show3;
1634 pixel = rgb_sanity_check(pixel);
1635 setPixelColorInternal(x, y, pixel);
1644 timings.master_speed = 0.12;
1646 timings.ratio[0] = 0.0025;
1648 timings.ratio[1] = 0.0027;
1649 timings.ratio[2] = 0.0031;
1650 timings.ratio[3] = 0.0033;
1652 timings.ratio[4] = 0.0036;
1653 timings.ratio[5] = 0.0039;
1655 calculate_oscillators(timings);
1657 for (
int x = 0; x < num_x; x++) {
1658 for (
int y = 0; y < num_y; y++) {
1660 animation.dist = distance[x][y];
1661 animation.angle = polar_theta[x][y] + move.radial[0] +
1662 move.noise_angle[0] + move.noise_angle[3] +
1663 move.noise_angle[1];
1664 animation.z = (sqrtf(animation.dist));
1665 animation.scale_x = 0.1;
1666 animation.scale_y = 0.1;
1667 animation.offset_z = 10;
1668 animation.offset_x = 10 * move.linear[0];
1669 float show1 = render_value(animation);
1671 animation.angle = polar_theta[x][y] + move.radial[1] +
1672 move.noise_angle[1] + move.noise_angle[4] +
1673 move.noise_angle[2];
1674 animation.offset_x = 11 * move.linear[1];
1675 animation.offset_z = 100;
1676 float show2 = render_value(animation);
1678 animation.angle = polar_theta[x][y] + move.radial[2] +
1679 move.noise_angle[2] + move.noise_angle[5] +
1680 move.noise_angle[3];
1681 animation.offset_x = 12 * move.linear[2];
1682 animation.offset_z = 300;
1683 float show3 = render_value(animation);
1685 float radius = radial_filter_radius;
1687 float radial = (radius - distance[x][y]) / distance[x][y];
1689 pixel.red = radial * (show1 - show3);
1690 pixel.green = radial * (show2 - show1);
1691 pixel.blue = radial * (show3 - show2);
1693 pixel = rgb_sanity_check(pixel);
1694 setPixelColorInternal(x, y, pixel);
1703 timings.master_speed = 0.12;
1705 timings.ratio[0] = 0.0025;
1707 timings.ratio[1] = 0.0027;
1708 timings.ratio[2] = 0.0031;
1709 timings.ratio[3] = 0.0033;
1711 timings.ratio[4] = 0.0036;
1712 timings.ratio[5] = 0.0039;
1714 calculate_oscillators(timings);
1716 for (
int x = 0; x < num_x; x++) {
1717 for (
int y = 0; y < num_y; y++) {
1719 animation.dist = distance[x][y] + move.noise_angle[4];
1720 animation.angle = polar_theta[x][y] + move.radial[0] +
1721 move.noise_angle[0] + move.noise_angle[3] +
1722 move.noise_angle[1];
1723 animation.z = (sqrtf(animation.dist));
1724 animation.scale_x = 0.1;
1725 animation.scale_y = 0.1;
1726 animation.offset_z = 10;
1727 animation.offset_x = 10 * move.linear[0];
1728 float show1 = render_value(animation);
1730 animation.angle = polar_theta[x][y] + move.radial[1] +
1731 move.noise_angle[1] + move.noise_angle[4] +
1732 move.noise_angle[2];
1733 animation.offset_x = 11 * move.linear[1];
1734 animation.offset_z = 100;
1735 float show2 = render_value(animation);
1737 animation.angle = polar_theta[x][y] + move.radial[2] +
1738 move.noise_angle[2] + move.noise_angle[5] +
1739 move.noise_angle[3];
1740 animation.offset_x = 12 * move.linear[2];
1741 animation.offset_z = 300;
1742 float show3 = render_value(animation);
1744 float radius = radial_filter_radius;
1746 float radial = (radius - distance[x][y]) / distance[x][y];
1748 pixel.red = radial * (show1 + show3) * 0.5 * animation.dist / 5;
1749 pixel.green = radial * (show2 + show1) * 0.5 * y / 15;
1750 pixel.blue = radial * (show3 + show2) * 0.5 * x / 15;
1752 pixel = rgb_sanity_check(pixel);
1753 setPixelColorInternal(y, x, pixel);
1762 timings.master_speed = 0.02;
1764 timings.ratio[0] = 0.0025;
1766 timings.ratio[1] = 0.0027;
1767 timings.ratio[2] = 0.0031;
1768 timings.ratio[3] = 0.0033;
1770 timings.ratio[4] = 0.0036;
1771 timings.ratio[5] = 0.0039;
1773 calculate_oscillators(timings);
1775 for (
int x = 0; x < num_x; x++) {
1776 for (
int y = 0; y < num_y; y++) {
1778 animation.dist = distance[x][y] + move.noise_angle[4];
1779 animation.angle = polar_theta[x][y] + move.radial[0] +
1780 move.noise_angle[0] + move.noise_angle[3] +
1781 move.noise_angle[1];
1782 animation.z = 3 + sqrtf(animation.dist);
1783 animation.scale_x = 0.1;
1784 animation.scale_y = 0.1;
1785 animation.offset_z = 10;
1786 animation.offset_x = 50 * move.linear[0];
1787 float show1 = render_value(animation);
1789 animation.angle = polar_theta[x][y] + move.radial[1] +
1790 move.noise_angle[1] + move.noise_angle[4] +
1791 move.noise_angle[2];
1792 animation.offset_x = 50 * move.linear[1];
1793 animation.offset_z = 100;
1794 float show2 = render_value(animation);
1796 animation.angle = polar_theta[x][y] + move.radial[2] +
1797 move.noise_angle[2] + move.noise_angle[5] +
1798 move.noise_angle[3];
1799 animation.offset_x = 50 * move.linear[2];
1800 animation.offset_z = 300;
1801 float show3 = render_value(animation);
1804 float radial = (radius - distance[x][y]) / distance[x][y];
1806 pixel.red = radial * (show1 + show3) * 0.5 * animation.dist / 5;
1807 pixel.green = radial * (show2 + show1) * 0.5 * y / 15;
1808 pixel.blue = radial * (show3 + show2) * 0.5 * x / 15;
1810 pixel = rgb_sanity_check(pixel);
1811 setPixelColorInternal(y, x, pixel);
1820 timings.master_speed = 0.02;
1822 timings.ratio[0] = 0.0025;
1824 timings.ratio[1] = 0.0027;
1825 timings.ratio[2] = 0.0031;
1826 timings.ratio[3] = 0.0033;
1828 timings.ratio[4] = 0.0036;
1829 timings.ratio[5] = 0.0039;
1831 calculate_oscillators(timings);
1833 for (
int x = 0; x < num_x; x++) {
1834 for (
int y = 0; y < num_y; y++) {
1836 animation.dist = distance[x][y] + move.noise_angle[4];
1837 animation.angle = polar_theta[x][y] + move.radial[0] +
1838 move.noise_angle[0] + move.noise_angle[3] +
1839 move.noise_angle[1];
1840 animation.z = 3 + sqrtf(animation.dist);
1841 animation.scale_x = 0.05;
1842 animation.scale_y = 0.05;
1843 animation.offset_z = 10;
1844 animation.offset_x = 50 * move.linear[0];
1845 float show1 = render_value(animation);
1847 animation.angle = polar_theta[x][y] + move.radial[1] +
1848 move.noise_angle[1] + move.noise_angle[4] +
1849 move.noise_angle[2];
1850 animation.offset_x = 50 * move.linear[1];
1851 animation.offset_z = 100;
1852 float show2 = render_value(animation);
1854 animation.angle = polar_theta[x][y] + move.radial[2] +
1855 move.noise_angle[2] + move.noise_angle[5] +
1856 move.noise_angle[3];
1857 animation.offset_x = 50 * move.linear[2];
1858 animation.offset_z = 300;
1859 float show3 = render_value(animation);
1862 float radial = (radius - distance[x][y]) / distance[x][y];
1864 pixel.red = radial * (show1 + show3) * 0.5 * animation.dist / 5;
1865 pixel.green = radial * (show2 + show1) * 0.5 * y / 15;
1866 pixel.blue = radial * (show3 + show2) * 0.5 * x / 15;
1868 pixel = rgb_sanity_check(pixel);
1870 setPixelColorInternal(y, x, pixel);
1875 void Big_Caleido() {
1879 timings.master_speed = 0.02;
1881 timings.ratio[0] = 0.0025;
1883 timings.ratio[1] = 0.0027;
1884 timings.ratio[2] = 0.0031;
1885 timings.ratio[3] = 0.0033;
1887 timings.ratio[4] = 0.0036;
1888 timings.ratio[5] = 0.0039;
1890 calculate_oscillators(timings);
1892 for (
int x = 0; x < num_x; x++) {
1893 for (
int y = 0; y < num_y; y++) {
1895 animation.dist = distance[x][y];
1896 animation.angle = 5 * polar_theta[x][y] +
1897 5 * move.noise_angle[0] +
1898 animation.dist * 0.1;
1900 animation.scale_x = 0.05;
1901 animation.scale_y = 0.05;
1902 animation.offset_z = 50 * move.linear[0];
1903 animation.offset_x = 50 * move.noise_angle[0];
1904 animation.offset_y = 50 * move.noise_angle[1];
1905 float show1 = render_value(animation);
1907 animation.angle = 6 * polar_theta[x][y] +
1908 5 * move.noise_angle[1] +
1909 animation.dist * 0.15;
1911 animation.scale_x = 0.05;
1912 animation.scale_y = 0.05;
1913 animation.offset_z = 50 * move.linear[1];
1914 animation.offset_x = 50 * move.noise_angle[1];
1915 animation.offset_y = 50 * move.noise_angle[2];
1916 float show2 = render_value(animation);
1918 animation.angle = 5;
1920 animation.scale_x = 0.10;
1921 animation.scale_y = 0.10;
1922 animation.offset_z = 10 * move.linear[2];
1923 animation.offset_x = 10 * move.noise_angle[2];
1924 animation.offset_y = 10 * move.noise_angle[3];
1925 float show3 = render_value(animation);
1927 animation.angle = 15;
1929 animation.scale_x = 0.10;
1930 animation.scale_y = 0.10;
1931 animation.offset_z = 10 * move.linear[3];
1932 animation.offset_x = 10 * move.noise_angle[3];
1933 animation.offset_y = 10 * move.noise_angle[4];
1934 float show4 = render_value(animation);
1936 animation.angle = 2;
1938 animation.scale_x = 0.15;
1939 animation.scale_y = 0.15;
1940 animation.offset_z = 10 * move.linear[4];
1941 animation.offset_x = 10 * move.noise_angle[4];
1942 animation.offset_y = 10 * move.noise_angle[5];
1943 float show5 = render_value(animation);
1945 pixel.red = show1 - show4;
1946 pixel.green = show2 - show5;
1947 pixel.blue = show3 - show2 + show1;
1949 pixel = rgb_sanity_check(pixel);
1951 setPixelColorInternal(y, x, pixel);
1961 timings.master_speed = 0.02;
1963 timings.ratio[0] = 0.0025;
1965 timings.ratio[1] = 0.0027;
1966 timings.ratio[2] = 0.0031;
1967 timings.ratio[3] = 0.0033;
1969 timings.ratio[4] = 0.0036;
1970 timings.ratio[5] = 0.0039;
1972 calculate_oscillators(timings);
1974 for (
int x = 0; x < num_x / 2; x++) {
1975 for (
int y = 0; y < num_y / 2; y++) {
1977 animation.dist = distance[x][y];
1978 animation.angle = polar_theta[x][y] + 5 * move.noise_angle[0];
1980 animation.scale_x = 0.1;
1981 animation.scale_y = 0.1;
1982 animation.offset_z = 50 * move.linear[0];
1983 animation.offset_x = 150 * move.directional[0];
1984 animation.offset_y = 150 * move.directional[1];
1985 float show1 = render_value(animation);
1987 animation.dist = distance[x][y];
1988 animation.angle = polar_theta[x][y] + 4 * move.noise_angle[1];
1990 animation.scale_x = 0.15;
1991 animation.scale_y = 0.15;
1992 animation.offset_z = 50 * move.linear[1];
1993 animation.offset_x = 150 * move.directional[1];
1994 animation.offset_y = 150 * move.directional[2];
1995 float show2 = render_value(animation);
1997 animation.dist = distance[x][y];
1998 animation.angle = polar_theta[x][y] + 5 * move.noise_angle[2];
2000 animation.scale_x = 0.1;
2001 animation.scale_y = 0.1;
2002 animation.offset_z = 50 * move.linear[2];
2003 animation.offset_x = 150 * move.directional[2];
2004 animation.offset_y = 150 * move.directional[3];
2005 float show3 = render_value(animation);
2007 animation.dist = distance[x][y];
2008 animation.angle = polar_theta[x][y] + 5 * move.noise_angle[3];
2010 animation.scale_x = 0.15;
2011 animation.scale_y = 0.15;
2012 animation.offset_z = 50 * move.linear[3];
2013 animation.offset_x = 150 * move.directional[3];
2014 animation.offset_y = 150 * move.directional[4];
2015 float show4 = render_value(animation);
2017 animation.dist = distance[x][y];
2018 animation.angle = polar_theta[x][y] + 5 * move.noise_angle[4];
2020 animation.scale_x = 0.2;
2021 animation.scale_y = 0.2;
2022 animation.offset_z = 50 * move.linear[4];
2023 animation.offset_x = 150 * move.directional[4];
2024 animation.offset_y = 150 * move.directional[5];
2025 float show5 = render_value(animation);
2027 pixel.red = show1 + show2;
2028 pixel.green = show3 + show4;
2031 pixel = rgb_sanity_check(pixel);
2033 setPixelColorInternal(x, y, pixel);
2035 setPixelColorInternal((num_x - 1) - x, y, pixel);
2036 setPixelColorInternal((num_x - 1) - x, (num_y - 1) - y, pixel);
2037 setPixelColorInternal(x, (num_y - 1) - y, pixel);
2047 timings.master_speed = 0.03;
2049 timings.ratio[0] = 0.025;
2051 timings.ratio[1] = 0.027;
2052 timings.ratio[2] = 0.031;
2053 timings.ratio[3] = 0.0033;
2055 timings.ratio[4] = 0.0036;
2056 timings.ratio[5] = 0.0039;
2058 calculate_oscillators(timings);
2060 for (
int x = 0; x < num_x; x++) {
2061 for (
int y = 0; y < num_y; y++) {
2063 animation.dist = distance[x][y] * (move.directional[0]);
2064 animation.angle = polar_theta[x][y] + move.radial[0];
2066 animation.scale_x = 0.09;
2067 animation.scale_y = 0.09;
2068 animation.offset_z = 5 * move.linear[0];
2069 animation.offset_x = 0;
2070 animation.offset_y = 0;
2071 float show1 = render_value(animation);
2073 animation.dist = distance[x][y] * move.directional[1];
2074 animation.angle = polar_theta[x][y] + move.radial[1];
2076 animation.scale_x = 0.07;
2077 animation.scale_y = 0.07;
2078 animation.offset_z = 5 * move.linear[1];
2079 animation.offset_x = 0;
2080 animation.offset_y = 0;
2081 float show2 = render_value(animation);
2083 animation.dist = distance[x][y] * move.directional[2];
2084 animation.angle = polar_theta[x][y] + move.radial[2];
2086 animation.scale_x = 0.05;
2087 animation.scale_y = 0.05;
2088 animation.offset_z = 5 * move.linear[2];
2089 animation.offset_x = 0;
2090 animation.offset_y = 0;
2091 float show3 = render_value(animation);
2094 pixel.green = show2;
2097 pixel = rgb_sanity_check(pixel);
2099 setPixelColorInternal(x, y, pixel);
2109 timings.master_speed = 0.02;
2111 timings.ratio[0] = 0.025;
2113 timings.ratio[1] = 0.027;
2114 timings.ratio[2] = 0.031;
2115 timings.ratio[3] = 0.0033;
2117 timings.ratio[4] = 0.0036;
2118 timings.ratio[5] = 0.0039;
2120 calculate_oscillators(timings);
2122 for (
int x = 0; x < num_x; x++) {
2123 for (
int y = 0; y < num_y; y++) {
2125 animation.dist = distance[x][y];
2126 animation.angle = polar_theta[x][y];
2128 animation.scale_x = 0.09;
2129 animation.scale_y = 0.09;
2130 animation.offset_z = 0;
2131 animation.offset_x = 0;
2132 animation.offset_y = -20 * move.linear[0];
2134 animation.low_limit = -1;
2135 animation.high_limit = 1;
2136 show1 = render_value(animation);
2138 animation.dist = distance[x][y];
2139 animation.angle = polar_theta[x][y];
2141 animation.scale_x = 0.09;
2142 animation.scale_y = 0.09;
2143 animation.offset_z = 0;
2144 animation.offset_x = 0;
2145 animation.offset_y = -20 * move.linear[0];
2147 animation.low_limit = -1;
2148 animation.high_limit = 1;
2149 show2 = render_value(animation);
2151 animation.dist = distance[x][y];
2152 animation.angle = polar_theta[x][y];
2154 animation.scale_x = 0.09;
2155 animation.scale_y = 0.09;
2156 animation.offset_z = 0;
2157 animation.offset_x = 500 + show1 / 20;
2158 animation.offset_y = -4 * move.linear[0] + show2 / 20;
2159 animation.low_limit = 0;
2160 animation.high_limit = 1;
2161 show3 = render_value(animation);
2163 animation.dist = distance[x][y];
2164 animation.angle = polar_theta[x][y];
2166 animation.scale_x = 0.09;
2167 animation.scale_y = 0.09;
2168 animation.offset_z = 0;
2169 animation.offset_x = 500 + show1 / 18;
2170 animation.offset_y = -4 * move.linear[0] + show2 / 18;
2171 animation.low_limit = 0;
2172 animation.high_limit = 1;
2173 show4 = render_value(animation);
2175 animation.dist = distance[x][y];
2176 animation.angle = polar_theta[x][y];
2178 animation.scale_x = 0.09;
2179 animation.scale_y = 0.09;
2180 animation.offset_z = 0;
2181 animation.offset_x = 500 + show1 / 19;
2182 animation.offset_y = -4 * move.linear[0] + show2 / 19;
2183 animation.low_limit = 0.3;
2184 animation.high_limit = 1;
2185 show5 = render_value(animation);
2188 pixel.green = show3;
2191 pixel = rgb_sanity_check(pixel);
2193 setPixelColorInternal(x, y, pixel);
2202 timings.master_speed = 0.02;
2204 timings.ratio[0] = 0.025;
2206 timings.ratio[1] = 0.027;
2207 timings.ratio[2] = 0.031;
2208 timings.ratio[3] = 0.0033;
2210 timings.ratio[4] = 0.0036;
2211 timings.ratio[5] = 0.0039;
2213 calculate_oscillators(timings);
2215 for (
int x = 0; x < num_x; x++) {
2216 for (
int y = 0; y < num_y; y++) {
2218 animation.dist = distance[x][y];
2219 animation.angle = polar_theta[x][y];
2221 animation.scale_x = 0.09;
2222 animation.scale_y = 0.09;
2223 animation.offset_z = 0;
2224 animation.offset_x = 0;
2225 animation.offset_y = -20 * move.linear[0];
2227 animation.low_limit = 0;
2228 animation.high_limit = 1;
2229 show1 = render_value(animation);
2231 animation.dist = distance[x][y];
2232 animation.angle = polar_theta[x][y];
2234 animation.scale_x = 0.09;
2235 animation.scale_y = 0.09;
2236 animation.offset_z = 0;
2237 animation.offset_x = 0;
2238 animation.offset_y = -40 * move.linear[0];
2240 animation.low_limit = 0;
2241 animation.high_limit = 1;
2242 show2 = render_value(animation);
2244 pixel.red = add(show2, show1);
2246 pixel.blue = colordodge(show2, show1);
2248 pixel = rgb_sanity_check(pixel);
2250 setPixelColorInternal(x, y, pixel);
2259 timings.master_speed = 0.03;
2261 timings.ratio[0] = 0.025;
2263 timings.ratio[1] = 0.027;
2264 timings.ratio[2] = 0.031;
2265 timings.ratio[3] = 0.0053;
2267 timings.ratio[4] = 0.0056;
2268 timings.ratio[5] = 0.0059;
2270 calculate_oscillators(timings);
2272 for (
int x = 0; x < num_x; x++) {
2273 for (
int y = 0; y < num_y; y++) {
2275 animation.dist = distance[x][y] * (move.directional[0]);
2276 animation.angle = polar_theta[x][y] + move.radial[0];
2278 animation.scale_x = 0.09;
2279 animation.scale_y = 0.09;
2280 animation.offset_z = 5 * move.linear[0];
2281 animation.offset_x = 0;
2282 animation.offset_y = 0;
2283 float show1 = render_value(animation);
2285 animation.dist = distance[x][y] * move.directional[1];
2286 animation.angle = polar_theta[x][y] + move.radial[1];
2288 animation.scale_x = 0.07;
2289 animation.scale_y = 0.07;
2290 animation.offset_z = 5 * move.linear[1];
2291 animation.offset_x = 0;
2292 animation.offset_y = 0;
2293 float show2 = render_value(animation);
2295 animation.dist = distance[x][y] * move.directional[2];
2296 animation.angle = polar_theta[x][y] + move.radial[2];
2298 animation.scale_x = 0.05;
2299 animation.scale_y = 0.05;
2300 animation.offset_z = 5 * move.linear[2];
2301 animation.offset_x = 0;
2302 animation.offset_y = 0;
2303 float show3 = render_value(animation);
2305 animation.dist = distance[x][y] * (move.directional[3]);
2306 animation.angle = polar_theta[x][y] + move.radial[3];
2308 animation.scale_x = 0.09;
2309 animation.scale_y = 0.09;
2310 animation.offset_z = 5 * move.linear[3];
2311 animation.offset_x = 0;
2312 animation.offset_y = 0;
2313 float show4 = render_value(animation);
2315 animation.dist = distance[x][y] * move.directional[4];
2316 animation.angle = polar_theta[x][y] + move.radial[4];
2318 animation.scale_x = 0.07;
2319 animation.scale_y = 0.07;
2320 animation.offset_z = 5 * move.linear[4];
2321 animation.offset_x = 0;
2322 animation.offset_y = 0;
2323 float show5 = render_value(animation);
2325 animation.dist = distance[x][y] * move.directional[5];
2326 animation.angle = polar_theta[x][y] + move.radial[5];
2328 animation.scale_x = 0.05;
2329 animation.scale_y = 0.05;
2330 animation.offset_z = 5 * move.linear[5];
2331 animation.offset_x = 0;
2332 animation.offset_y = 0;
2333 float show6 = render_value(animation);
2335 float radius = radial_filter_radius;
2337 float radial = (radius - distance[x][y]) / distance[x][y];
2339 pixel.red = radial * add(show1, show4);
2340 pixel.green = radial * colordodge(show2, show5);
2341 pixel.blue = radial * screen(show3, show6);
2343 pixel = rgb_sanity_check(pixel);
2345 setPixelColorInternal(x, y, pixel);
2354 timings.master_speed = 0.03;
2356 timings.ratio[0] = 0.025;
2358 timings.ratio[1] = 0.027;
2359 timings.ratio[2] = 0.031;
2360 timings.ratio[3] = 0.0053;
2362 timings.ratio[4] = 0.0056;
2363 timings.ratio[5] = 0.0059;
2365 calculate_oscillators(timings);
2367 for (
int x = 0; x < num_x; x++) {
2368 for (
int y = 0; y < num_y; y++) {
2372 animation.dist = distance[x][y] * (move.directional[0]) * s;
2373 animation.angle = polar_theta[x][y] + move.radial[0];
2375 animation.scale_x = 0.09;
2376 animation.scale_y = 0.09;
2377 animation.offset_z = 5 * move.linear[0];
2378 animation.offset_x = 0;
2379 animation.offset_y = 0;
2380 float show1 = render_value(animation);
2382 animation.dist = distance[x][y] * move.directional[1] * s;
2383 animation.angle = polar_theta[x][y] + move.radial[1];
2385 animation.scale_x = 0.07;
2386 animation.scale_y = 0.07;
2387 animation.offset_z = 5 * move.linear[1];
2388 animation.offset_x = 0;
2389 animation.offset_y = 0;
2390 float show2 = render_value(animation);
2392 animation.dist = distance[x][y] * move.directional[2] * s;
2393 animation.angle = polar_theta[x][y] + move.radial[2];
2395 animation.scale_x = 0.05;
2396 animation.scale_y = 0.05;
2397 animation.offset_z = 5 * move.linear[2];
2398 animation.offset_x = 0;
2399 animation.offset_y = 0;
2400 float show3 = render_value(animation);
2402 animation.dist = distance[x][y] * (move.directional[3]) * s;
2403 animation.angle = polar_theta[x][y] + move.radial[3];
2405 animation.scale_x = 0.09;
2406 animation.scale_y = 0.09;
2407 animation.offset_z = 5 * move.linear[3];
2408 animation.offset_x = 0;
2409 animation.offset_y = 0;
2410 float show4 = render_value(animation);
2412 animation.dist = distance[x][y] * move.directional[4] * s;
2413 animation.angle = polar_theta[x][y] + move.radial[4];
2415 animation.scale_x = 0.07;
2416 animation.scale_y = 0.07;
2417 animation.offset_z = 5 * move.linear[4];
2418 animation.offset_x = 0;
2419 animation.offset_y = 0;
2420 float show5 = render_value(animation);
2422 animation.dist = distance[x][y] * move.directional[5] * s;
2423 animation.angle = polar_theta[x][y] + move.radial[5];
2425 animation.scale_x = 0.05;
2426 animation.scale_y = 0.05;
2427 animation.offset_z = 5 * move.linear[5];
2428 animation.offset_x = 0;
2429 animation.offset_y = 0;
2430 float show6 = render_value(animation);
2432 float radius = radial_filter_radius;
2434 float radial = (radius - distance[x][y]) / distance[x][y];
2436 show7 = screen(show1, show4);
2437 show8 = colordodge(show2, show5);
2438 show9 = screen(show3, show6);
2440 pixel.red = radial * (show7 + show8);
2442 pixel.blue = radial * show9;
2444 pixel = rgb_sanity_check(pixel);
2446 setPixelColorInternal(x, y, pixel);
2455 timings.master_speed = 0.005;
2457 timings.ratio[0] = 0.025;
2459 timings.ratio[1] = 0.027;
2460 timings.ratio[2] = 0.031;
2461 timings.ratio[3] = 0.0053;
2463 timings.ratio[4] = 0.0056;
2464 timings.ratio[5] = 0.01;
2466 calculate_oscillators(timings);
2468 for (
int x = 0; x < num_x; x++) {
2469 for (
int y = 0; y < num_y; y++) {
2473 animation.dist = distance[x][y];
2474 animation.angle = 2;
2476 animation.scale_x = 0.15;
2477 animation.scale_y = 0.15;
2478 animation.offset_z = 0;
2479 animation.offset_y = 50 * move.linear[0];
2480 animation.offset_x = 0;
2481 animation.low_limit = 0;
2482 float show1 = render_value(animation);
2484 animation.dist = distance[x][y];
2485 animation.angle = 2;
2487 animation.offset_x = -50 * move.linear[0];
2488 float show2 = render_value(animation);
2490 animation.dist = distance[x][y];
2491 animation.angle = 1;
2493 animation.scale_x = 0.15;
2494 animation.scale_y = 0.15;
2495 animation.offset_x = 0;
2496 animation.offset_y = -50 * move.linear[1];
2497 float show4 = render_value(animation);
2499 animation.dist = distance[x][y];
2500 animation.angle = 1;
2502 animation.scale_x = 0.15;
2503 animation.scale_y = 0.15;
2504 animation.offset_x = 0;
2505 animation.offset_y = 50 * move.linear[1];
2506 float show5 = render_value(animation);
2512 show3 = add(show1, show2);
2513 show6 = screen(show4, show5);
2520 pixel = rgb_sanity_check(pixel);
2522 setPixelColorInternal(x, y, pixel);
2531 timings.master_speed = 0.005;
2533 timings.ratio[0] = 0.025;
2535 timings.ratio[1] = 0.027;
2536 timings.ratio[2] = 0.031;
2537 timings.ratio[3] = 0.0053;
2539 timings.ratio[4] = 0.0056;
2540 timings.ratio[5] = 0.0059;
2542 calculate_oscillators(timings);
2544 for (
int x = 0; x < num_x; x++) {
2545 for (
int y = 0; y < num_y; y++) {
2547 animation.dist = distance[x][y];
2548 animation.angle = polar_theta[x][y];
2550 animation.scale_x = 0.09;
2551 animation.scale_y = 0.09;
2552 animation.offset_y = -30 * move.linear[0];
2553 animation.offset_z = 0;
2554 animation.offset_x = 0;
2555 animation.low_limit = -1;
2556 show1 = render_value(animation);
2558 animation.dist = distance[x][y];
2559 animation.angle = polar_theta[x][y];
2561 animation.scale_x = 0.09;
2562 animation.scale_y = 0.09;
2563 animation.offset_y = -30 * move.linear[1];
2564 animation.offset_z = 0;
2565 animation.offset_x = 0;
2566 animation.low_limit = -1;
2567 show2 = render_value(animation);
2569 animation.dist = distance[x][y];
2570 animation.angle = polar_theta[x][y] + 2 + (show1 / 255) * PI;
2572 animation.scale_x = 0.09;
2573 animation.scale_y = 0.09;
2574 animation.offset_y = -10 * move.linear[0];
2575 animation.offset_z = 0;
2576 animation.offset_x = 0;
2577 animation.low_limit = 0;
2578 show3 = render_value(animation);
2580 animation.dist = distance[x][y];
2581 animation.angle = polar_theta[x][y] + 2 + (show2 / 255) * PI;
2584 animation.scale_x = 0.09;
2585 animation.scale_y = 0.09;
2586 animation.offset_y = -20 * move.linear[0];
2587 animation.offset_z = 0;
2588 animation.offset_x = 0;
2589 animation.low_limit = 0;
2590 show4 = render_value(animation);
2592 show5 = screen(show4, show3);
2593 show6 = colordodge(show5, show3);
2595 float linear1 = y / 32.f;
2596 float linear2 = (32 - y) / 32.f;
2598 pixel.red = show5 * linear1;
2600 pixel.blue = show6 * linear2;
2602 pixel = rgb_sanity_check(pixel);
2604 setPixelColorInternal(x, y, pixel);
2613 timings.master_speed = 0.006;
2615 timings.ratio[0] = 0.025;
2617 timings.ratio[1] = 0.027;
2618 timings.ratio[2] = 0.031;
2619 timings.ratio[3] = 0.0053;
2621 timings.ratio[4] = 0.0056;
2622 timings.ratio[5] = 0.0059;
2624 calculate_oscillators(timings);
2626 for (
int x = 0; x < num_x; x++) {
2627 for (
int y = 0; y < num_y; y++) {
2631 animation.dist = distance[x][y];
2632 animation.angle = polar_theta[x][y];
2634 animation.scale_x = 0.09 * scale;
2635 animation.scale_y = 0.09 * scale;
2636 animation.offset_y = -30 * move.linear[0];
2637 animation.offset_z = 0;
2638 animation.offset_x = 0;
2639 animation.low_limit = -1;
2640 show1 = render_value(animation);
2642 animation.dist = distance[x][y];
2643 animation.angle = polar_theta[x][y];
2645 animation.scale_x = 0.09 * scale;
2646 animation.scale_y = 0.09 * scale;
2647 animation.offset_y = -30 * move.linear[1];
2648 animation.offset_z = 0;
2649 animation.offset_x = 0;
2650 animation.low_limit = -1;
2651 show2 = render_value(animation);
2653 animation.dist = distance[x][y];
2654 animation.angle = polar_theta[x][y] + 2 + (show1 / 255) * PI;
2656 animation.scale_x = 0.09 * scale;
2657 animation.scale_y = 0.09 * scale;
2658 animation.offset_y = -10 * move.linear[0];
2659 animation.offset_z = 0;
2660 animation.offset_x = 0;
2661 animation.low_limit = 0;
2662 show3 = render_value(animation);
2664 animation.dist = distance[x][y];
2665 animation.angle = polar_theta[x][y] + 2 + (show2 / 255) * PI;
2668 animation.scale_x = 0.09 * scale;
2669 animation.scale_y = 0.09 * scale;
2670 animation.offset_y = -20 * move.linear[0];
2671 animation.offset_z = 0;
2672 animation.offset_x = 0;
2673 animation.low_limit = 0;
2674 show4 = render_value(animation);
2676 show5 = screen(show4, show3);
2677 show6 = colordodge(show5, show3);
2682 pixel.red = (show5 + show6) / 2;
2683 pixel.green = (show5 - 50) + (show6 / 16);
2686 pixel = rgb_sanity_check(pixel);
2688 setPixelColorInternal(x, y, pixel);
2693 void Complex_Kaleido() {
2697 timings.master_speed = 0.009;
2699 timings.ratio[0] = 0.025;
2701 timings.ratio[1] = 0.027;
2702 timings.ratio[2] = 0.031;
2703 timings.ratio[3] = 0.0053;
2705 timings.ratio[4] = 0.0056;
2706 timings.ratio[5] = 0.0059;
2708 calculate_oscillators(timings);
2712 for (
int x = 0; x < num_x; x++) {
2713 for (
int y = 0; y < num_y; y++) {
2715 animation.dist = distance[x][y];
2716 animation.angle = 5 * polar_theta[x][y] + 10 * move.radial[0] +
2719 animation.scale_x = 0.07;
2720 animation.scale_y = 0.07;
2721 animation.offset_z = 0;
2722 animation.offset_x = -30 * move.linear[0];
2723 animation.offset_y = 0;
2724 animation.low_limit = 0;
2725 show1 = render_value(animation);
2727 animation.dist = distance[x][y];
2728 animation.angle = -5 * polar_theta[x][y] + 12 * move.radial[1] +
2731 animation.scale_x = 0.07;
2732 animation.scale_y = 0.07;
2733 animation.offset_z = 0;
2734 animation.offset_x = -30 * move.linear[1];
2735 animation.offset_y = 0;
2736 animation.low_limit = 0;
2737 show2 = render_value(animation);
2739 animation.dist = distance[x][y];
2740 animation.angle = -5 * polar_theta[x][y] + 12 * move.radial[2] +
2743 animation.scale_x = 0.05;
2744 animation.scale_y = 0.05;
2745 animation.offset_z = 0;
2746 animation.offset_x = -40 * move.linear[2];
2747 animation.offset_y = 0;
2748 animation.low_limit = 0;
2749 show3 = render_value(animation);
2751 animation.dist = distance[x][y];
2752 animation.angle = 5 * polar_theta[x][y] + 12 * move.radial[3] +
2755 animation.scale_x = 0.09;
2756 animation.scale_y = 0.09;
2757 animation.offset_z = 0;
2758 animation.offset_x = -35 * move.linear[3];
2759 animation.offset_y = 0;
2760 animation.low_limit = 0;
2761 show4 = render_value(animation);
2763 show5 = screen(show4, show3);
2764 show6 = colordodge(show2, show3);
2769 float radius = radial_filter_radius;
2771 float radial = (radius - distance[x][y]) / distance[x][y];
2773 pixel.red = radial * (show1 + show2);
2774 pixel.green = 0.3 * radial * show6;
2775 pixel.blue = radial * show5;
2777 pixel = rgb_sanity_check(pixel);
2779 setPixelColorInternal(x, y, pixel);
2784 void Complex_Kaleido_2() {
2788 timings.master_speed = 0.009;
2790 timings.ratio[0] = 0.025;
2792 timings.ratio[1] = 0.027;
2793 timings.ratio[2] = 0.031;
2794 timings.ratio[3] = 0.0053;
2796 timings.ratio[4] = 0.0056;
2797 timings.ratio[5] = 0.0059;
2799 calculate_oscillators(timings);
2803 for (
int x = 0; x < num_x; x++) {
2804 for (
int y = 0; y < num_y; y++) {
2806 animation.dist = distance[x][y];
2807 animation.angle = 5 * polar_theta[x][y] + 10 * move.radial[0] +
2810 animation.scale_x = 0.07 * size;
2811 animation.scale_y = 0.07 * size;
2812 animation.offset_z = 0;
2813 animation.offset_x = -30 * move.linear[0];
2814 animation.offset_y = 0;
2815 animation.low_limit = 0;
2816 show1 = render_value(animation);
2818 animation.dist = distance[x][y];
2819 animation.angle = -5 * polar_theta[x][y] + 12 * move.radial[1] +
2822 animation.scale_x = 0.07 * size;
2823 animation.scale_y = 0.07 * size;
2824 animation.offset_z = 0;
2825 animation.offset_x = -30 * move.linear[1];
2826 animation.offset_y = 0;
2827 animation.low_limit = 0;
2828 show2 = render_value(animation);
2830 animation.dist = distance[x][y];
2831 animation.angle = -5 * polar_theta[x][y] + 12 * move.radial[2] +
2834 animation.scale_x = 0.05 * size;
2835 animation.scale_y = 0.05 * size;
2836 animation.offset_z = 0;
2837 animation.offset_x = -40 * move.linear[2];
2838 animation.offset_y = 0;
2839 animation.low_limit = 0;
2840 show3 = render_value(animation);
2842 animation.dist = distance[x][y];
2843 animation.angle = 5 * polar_theta[x][y] + 12 * move.radial[3] +
2846 animation.scale_x = 0.09 * size;
2847 animation.scale_y = 0.09 * size;
2848 animation.offset_z = 0;
2849 animation.offset_x = -35 * move.linear[3];
2850 animation.offset_y = 0;
2851 animation.low_limit = 0;
2852 show4 = render_value(animation);
2854 show5 = screen(show4, show3);
2855 show6 = colordodge(show2, show3);
2860 float radius = radial_filter_radius;
2862 float radial = (radius - distance[x][y]) / distance[x][y];
2864 pixel.red = radial * (show1 + show2);
2865 pixel.green = 0.3 * radial * show6;
2866 pixel.blue = radial * show5;
2868 pixel = rgb_sanity_check(pixel);
2870 setPixelColorInternal(x, y, pixel);
2875 void Complex_Kaleido_3() {
2879 timings.master_speed = 0.001;
2881 timings.ratio[0] = 0.025;
2883 timings.ratio[1] = 0.027;
2884 timings.ratio[2] = 0.031;
2885 timings.ratio[3] = 0.033;
2887 timings.ratio[4] = 0.037;
2888 timings.ratio[5] = 0.038;
2889 timings.ratio[5] = 0.041;
2891 calculate_oscillators(timings);
2893 float size = 0.4 + move.directional[0] * 0.1;
2897 for (
int x = 0; x < num_x; x++) {
2898 for (
int y = 0; y < num_y; y++) {
2900 animation.dist = distance[x][y];
2902 5 * polar_theta[x][y] + 10 * move.radial[0] +
2903 animation.dist / (((move.directional[0] + 3) * 2)) +
2904 move.noise_angle[0] * q;
2906 animation.scale_x = 0.08 * size * (move.directional[0] + 1.5);
2907 animation.scale_y = 0.07 * size;
2908 animation.offset_z = -10 * move.linear[0];
2909 animation.offset_x = -30 * move.linear[0];
2910 animation.offset_y = 0;
2911 animation.low_limit = 0;
2912 show1 = render_value(animation);
2914 animation.dist = distance[x][y];
2916 -5 * polar_theta[x][y] + 10 * move.radial[1] +
2917 animation.dist / (((move.directional[1] + 3) * 2)) +
2918 move.noise_angle[1] * q;
2920 animation.scale_x = 0.07 * size * (move.directional[1] + 1.1);
2921 animation.scale_y = 0.07 * size * (move.directional[2] + 1.3);
2923 animation.offset_z = -12 * move.linear[1];
2925 animation.offset_x = -(num_x - 1) * move.linear[1];
2926 animation.offset_y = 0;
2927 animation.low_limit = 0;
2928 show2 = render_value(animation);
2930 animation.dist = distance[x][y];
2932 -5 * polar_theta[x][y] + 12 * move.radial[2] +
2933 animation.dist / (((move.directional[3] + 3) * 2)) +
2934 move.noise_angle[2] * q;
2936 animation.scale_x = 0.05 * size * (move.directional[3] + 1.5);
2938 animation.scale_y = 0.05 * size * (move.directional[4] + 1.5);
2940 animation.offset_z = -12 * move.linear[3];
2941 animation.offset_x = -40 * move.linear[3];
2942 animation.offset_y = 0;
2943 animation.low_limit = 0;
2944 show3 = render_value(animation);
2946 animation.dist = distance[x][y];
2948 5 * polar_theta[x][y] + 12 * move.radial[3] +
2949 animation.dist / (((move.directional[5] + 3) * 2)) +
2950 move.noise_angle[3] * q;
2952 animation.scale_x = 0.09 * size * (move.directional[5] + 1.5);
2955 animation.scale_y = 0.09 * size * (move.directional[6] + 1.5);
2958 animation.offset_z = 0;
2959 animation.offset_x = -35 * move.linear[3];
2960 animation.offset_y = 0;
2961 animation.low_limit = 0;
2962 show4 = render_value(animation);
2964 show5 = screen(show4, show3) - show2;
2965 show6 = colordodge(show4, show1);
2967 show7 = multiply(show1, show2);
2969 float linear1 = y / 32.f;
2972 float radius = radial_filter_radius;
2974 float radial = (radius - distance[x][y]) / distance[x][y];
2976 show7 = multiply(show1, show2) * linear1 * 2;
2977 show8 = subtract(show7, show5);
2980 pixel.green = 0.2 * show8;
2981 pixel.blue = show5 * radial;
2982 pixel.red = (1 * show1 + 1 * show2) - show7 / 2;
2984 pixel = rgb_sanity_check(pixel);
2986 setPixelColorInternal(x, y, pixel);
2991 void Complex_Kaleido_4() {
2995 timings.master_speed = 0.01;
2997 timings.ratio[0] = 0.025;
2999 timings.ratio[1] = 0.027;
3000 timings.ratio[2] = 0.031;
3001 timings.ratio[3] = 0.033;
3003 timings.ratio[4] = 0.037;
3004 timings.ratio[5] = 0.038;
3005 timings.ratio[6] = 0.041;
3007 calculate_oscillators(timings);
3013 for (
int x = 0; x < num_x; x++) {
3014 for (
int y = 0; y < num_y; y++) {
3016 float s = 1 + move.directional[6] * 0.3;
3018 animation.dist = distance[x][y] * s;
3020 5 * polar_theta[x][y] + 1 * move.radial[0] -
3021 animation.dist / (3 + move.directional[0] * 0.5);
3023 animation.scale_x = 0.08 * size + (move.directional[0] * 0.01);
3024 animation.scale_y = 0.07 * size + (move.directional[1] * 0.01);
3025 animation.offset_z = -10 * move.linear[0];
3026 animation.offset_x = 0;
3027 animation.offset_y = 0;
3028 animation.low_limit = 0;
3029 show1 = render_value(animation);
3031 animation.dist = distance[x][y] * s;
3033 5 * polar_theta[x][y] + 1 * move.radial[1] +
3034 animation.dist / (3 + move.directional[1] * 0.5);
3036 animation.scale_x = 0.08 * size + (move.directional[1] * 0.01);
3037 animation.scale_y = 0.07 * size + (move.directional[2] * 0.01);
3038 animation.offset_z = -10 * move.linear[1];
3039 animation.offset_x = 0;
3040 animation.offset_y = 0;
3041 animation.low_limit = 0;
3042 show2 = render_value(animation);
3044 animation.dist = distance[x][y];
3045 animation.angle = 1;
3047 animation.scale_x = 0.2 * size;
3048 animation.scale_y = 0.2 * size;
3049 animation.offset_z = 0;
3050 animation.offset_y = +7 * move.linear[3] + move.noise_angle[3];
3051 animation.offset_x = 0;
3052 animation.low_limit = 0;
3053 show3 = render_value(animation);
3055 animation.dist = distance[x][y];
3057 5 * polar_theta[x][y] + 12 * move.radial[3] +
3058 animation.dist / (((move.directional[5] + 3) * 2)) +
3059 move.noise_angle[3] * q;
3061 animation.scale_x = 0.09 * size * (move.directional[5] + 1.5);
3064 animation.scale_y = 0.09 * size * (move.directional[6] + 1.5);
3067 animation.offset_z = 0;
3068 animation.offset_x = -35 * move.linear[3];
3069 animation.offset_y = 0;
3070 animation.low_limit = 0;
3071 show4 = render_value(animation);
3082 float radius = radial_filter_radius;
3084 float radial = (radius - distance[x][y]) / distance[x][y];
3090 show5 = ((show1 + show2)) - show3;
3096 show6 = colordodge(show1, show2);
3098 pixel.red = show5 * radial;
3099 pixel.blue = (64 - show5 - show3) * radial;
3100 pixel.green = 0.5 * (show6);
3104 pixel = rgb_sanity_check(pixel);
3106 setPixelColorInternal(x, y, pixel);
3111 void Complex_Kaleido_5() {
3115 timings.master_speed = 0.01;
3117 timings.ratio[0] = 0.025;
3119 timings.ratio[1] = 0.027;
3120 timings.ratio[2] = 0.031;
3121 timings.ratio[3] = 0.033;
3123 timings.ratio[4] = 0.037;
3124 timings.ratio[5] = 0.0038;
3125 timings.ratio[6] = 0.041;
3127 calculate_oscillators(timings);
3133 for (
int x = 0; x < num_x; x++) {
3134 for (
int y = 0; y < num_y; y++) {
3136 float s = 1 + move.directional[6] * 0.8;
3138 animation.dist = distance[x][y] * s;
3139 animation.angle = 10 * move.radial[6] +
3140 50 * move.directional[5] * polar_theta[x][y] -
3143 animation.scale_x = 0.08 * size;
3144 animation.scale_y = 0.07 * size;
3145 animation.offset_z = -10 * move.linear[0];
3146 animation.offset_x = 0;
3147 animation.offset_y = 0;
3148 animation.low_limit = -0.5;
3149 show1 = render_value(animation);
3151 float radius = radial_filter_radius;
3153 float radial = (radius - distance[x][y]) / distance[x][y];
3155 pixel.red = show1 * radial;
3159 pixel = rgb_sanity_check(pixel);
3161 setPixelColorInternal(x, y, pixel);
3166 void Complex_Kaleido_6() {
3170 timings.master_speed = 0.01;
3172 timings.ratio[0] = 0.025;
3174 timings.ratio[1] = 0.027;
3175 timings.ratio[2] = 0.031;
3176 timings.ratio[3] = 0.033;
3178 timings.ratio[4] = 0.037;
3179 timings.ratio[5] = 0.0038;
3180 timings.ratio[6] = 0.041;
3182 calculate_oscillators(timings);
3184 for (
int x = 0; x < num_x; x++) {
3185 for (
int y = 0; y < num_y; y++) {
3187 animation.dist = distance[x][y];
3188 animation.angle = 16 * polar_theta[x][y] + 16 * move.radial[0];
3190 animation.scale_x = 0.06;
3191 animation.scale_y = 0.06;
3192 animation.offset_z = -10 * move.linear[0];
3193 animation.offset_y = 10 * move.noise_angle[0];
3194 animation.offset_x = 10 * move.noise_angle[4];
3195 animation.low_limit = 0;
3196 show1 = render_value(animation);
3198 animation.dist = distance[x][y];
3199 animation.angle = 16 * polar_theta[x][y] + 16 * move.radial[1];
3201 animation.scale_x = 0.06;
3202 animation.scale_y = 0.06;
3203 animation.offset_z = -10 * move.linear[1];
3204 animation.offset_y = 10 * move.noise_angle[1];
3205 animation.offset_x = 10 * move.noise_angle[3];
3206 animation.low_limit = 0;
3207 show2 = render_value(animation);
3217 pixel = rgb_sanity_check(pixel);
3219 setPixelColorInternal(x, y, pixel);
3228 timings.master_speed = 0.037;
3230 timings.ratio[0] = 0.025;
3232 timings.ratio[1] = 0.027;
3233 timings.ratio[2] = 0.031;
3234 timings.ratio[3] = 0.033;
3236 timings.ratio[4] = 0.037;
3237 timings.ratio[5] = 0.1;
3238 timings.ratio[6] = 0.41;
3240 calculate_oscillators(timings);
3242 for (
int x = 0; x < num_x; x++) {
3243 for (
int y = 0; y < num_y; y++) {
3247 4 * sinf(move.directional[5] * PI + (
float)x / 2) +
3248 4 * cosf(move.directional[6] * PI +
float(y) / 2);
3249 animation.angle = 1 * polar_theta[x][y];
3251 animation.scale_x = 0.06;
3252 animation.scale_y = 0.06;
3253 animation.offset_z = -10 * move.linear[0];
3254 animation.offset_y = 10;
3255 animation.offset_x = 10;
3256 animation.low_limit = 0;
3257 show1 = render_value(animation);
3259 animation.dist = (10 + move.directional[0]) *
3260 sinf(-move.radial[5] + move.radial[0] +
3261 (distance[x][y] / (3)));
3262 animation.angle = 1 * polar_theta[x][y];
3264 animation.scale_x = 0.1;
3265 animation.scale_y = 0.1;
3266 animation.offset_z = -10;
3267 animation.offset_y = 20 * move.linear[0];
3268 animation.offset_x = 10;
3269 animation.low_limit = 0;
3270 show2 = render_value(animation);
3272 animation.dist = (10 + move.directional[1]) *
3273 sinf(-move.radial[5] + move.radial[1] +
3274 (distance[x][y] / (3)));
3275 animation.angle = 1 * polar_theta[x][y];
3277 animation.scale_x = 0.1;
3278 animation.scale_y = 0.1;
3279 animation.offset_z = -10;
3280 animation.offset_y = 20 * move.linear[1];
3281 animation.offset_x = 10;
3282 animation.low_limit = 0;
3283 show3 = render_value(animation);
3285 animation.dist = (10 + move.directional[2]) *
3286 sinf(-move.radial[5] + move.radial[2] +
3287 (distance[x][y] / (3)));
3288 animation.angle = 1 * polar_theta[x][y];
3290 animation.scale_x = 0.1;
3291 animation.scale_y = 0.1;
3292 animation.offset_z = -10;
3293 animation.offset_y = 20 * move.linear[2];
3294 animation.offset_x = 10;
3295 animation.low_limit = 0;
3296 show4 = render_value(animation);
3304 pixel.blue = (0.7 * show2 + 0.6 * show3 + 0.5 * show4);
3305 pixel.red = pixel.blue - 40;
3310 pixel = rgb_sanity_check(pixel);
3312 setPixelColorInternal(x, y, pixel);
3317 void Parametric_Water() {
3321 timings.master_speed = 0.003;
3323 timings.ratio[0] = 0.025;
3325 timings.ratio[1] = 0.027;
3326 timings.ratio[2] = 0.029;
3327 timings.ratio[3] = 0.033;
3329 timings.ratio[4] = 0.037;
3330 timings.ratio[5] = 0.15;
3331 timings.ratio[6] = 0.41;
3333 calculate_oscillators(timings);
3335 for (
int x = 0; x < num_x; x++) {
3336 for (
int y = 0; y < num_y; y++) {
3339 float f = 10 + 2 * move.directional[0];
3341 animation.dist = (f + move.directional[0]) *
3342 sinf(-move.radial[5] + move.radial[0] +
3343 (distance[x][y] / (s)));
3344 animation.angle = 1 * polar_theta[x][y];
3346 animation.scale_x = 0.1;
3347 animation.scale_y = 0.1;
3348 animation.offset_z = -10;
3349 animation.offset_y = 20 * move.linear[0];
3350 animation.offset_x = 10;
3351 animation.low_limit = 0;
3352 show2 = render_value(animation);
3354 animation.dist = (f + move.directional[1]) *
3355 sinf(-move.radial[5] + move.radial[1] +
3356 (distance[x][y] / (s)));
3357 animation.angle = 1 * polar_theta[x][y];
3359 animation.scale_x = 0.1;
3360 animation.scale_y = 0.1;
3361 animation.offset_z = -10;
3362 animation.offset_y = 20 * move.linear[1];
3363 animation.offset_x = 10;
3364 animation.low_limit = 0;
3365 show3 = render_value(animation);
3367 animation.dist = (f + move.directional[2]) *
3368 sinf(-move.radial[5] + move.radial[2] +
3369 (distance[x][y] / (s)));
3370 animation.angle = 1 * polar_theta[x][y];
3372 animation.scale_x = 0.1;
3373 animation.scale_y = 0.1;
3374 animation.offset_z = -10;
3375 animation.offset_y = 20 * move.linear[2];
3376 animation.offset_x = 10;
3377 animation.low_limit = 0;
3378 show4 = render_value(animation);
3380 animation.dist = (f + move.directional[3]) *
3381 sinf(-move.radial[5] + move.radial[3] +
3382 (distance[x][y] / (s)));
3383 animation.angle = 1 * polar_theta[x][y];
3385 animation.scale_x = 0.1;
3386 animation.scale_y = 0.1;
3387 animation.offset_z = -10;
3388 animation.offset_y = 20 * move.linear[3];
3389 animation.offset_x = 10;
3390 animation.low_limit = 0;
3391 show5 = render_value(animation);
3393 show6 = screen(show4, show5);
3394 show7 = screen(show2, show3);
3397 float radial = (radius - distance[x][y]) / radius;
3402 pixel.red = pixel.blue - 40;
3404 pixel.blue = (0.3 * show6 + 0.7 * show7) * radial;
3406 pixel = rgb_sanity_check(pixel);
3408 setPixelColorInternal(x, y, pixel);
3413 void Module_Experiment1() {
3417 timings.master_speed = 0.03;
3419 timings.ratio[0] = 0.0025;
3421 timings.ratio[1] = 0.0027;
3422 timings.ratio[2] = 0.029;
3423 timings.ratio[3] = 0.033;
3426 calculate_oscillators(timings);
3428 for (
int x = 0; x < num_x; x++) {
3429 for (
int y = 0; y < num_y; y++) {
3431 animation.dist = distance[x][y] + 20 * move.directional[0];
3432 animation.angle = move.noise_angle[0] + move.noise_angle[1] +
3435 animation.scale_x = 0.1;
3436 animation.scale_y = 0.1;
3437 animation.offset_z = -10;
3438 animation.offset_y = 20 * move.linear[2];
3439 animation.offset_x = 10;
3440 animation.low_limit = 0;
3441 show1 = render_value(animation);
3447 pixel = rgb_sanity_check(pixel);
3449 setPixelColorInternal(x, y, pixel);
3454 void Module_Experiment2() {
3458 timings.master_speed = 0.02;
3460 timings.ratio[0] = 0.0025;
3462 timings.ratio[1] = 0.0027;
3463 timings.ratio[2] = 0.029;
3464 timings.ratio[3] = 0.033;
3467 calculate_oscillators(timings);
3469 for (
int x = 0; x < num_x; x++) {
3470 for (
int y = 0; y < num_y; y++) {
3473 distance[x][y] - (16 + move.directional[0] * 16);
3474 animation.angle = move.noise_angle[0] + move.noise_angle[1] +
3477 animation.scale_x = 0.1;
3478 animation.scale_y = 0.1;
3479 animation.offset_z = -10;
3480 animation.offset_y = 20 * move.linear[2];
3481 animation.offset_x = 10;
3482 animation.low_limit = 0;
3483 show1 = render_value(animation);
3486 pixel.green = show1 - 80;
3487 pixel.blue = show1 - 150;
3489 pixel = rgb_sanity_check(pixel);
3491 setPixelColorInternal(x, y, pixel);
3496 void Module_Experiment3() {
3500 timings.master_speed = 0.01;
3502 timings.ratio[0] = 0.0025;
3504 timings.ratio[1] = 0.0027;
3505 timings.ratio[2] = 0.029;
3506 timings.ratio[3] = 0.033;
3509 calculate_oscillators(timings);
3511 for (
int x = 0; x < num_x; x++) {
3512 for (
int y = 0; y < num_y; y++) {
3515 distance[x][y] - (12 + move.directional[3] * 4);
3516 animation.angle = move.noise_angle[0] + move.noise_angle[1] +
3519 animation.scale_x = 0.1;
3520 animation.scale_y = 0.1;
3521 animation.offset_z = -10;
3522 animation.offset_y = 20 * move.linear[2];
3523 animation.offset_x = 10;
3524 animation.low_limit = 0;
3525 show1 = render_value(animation);
3528 pixel.green = show1 - 80;
3529 pixel.blue = show1 - 150;
3531 pixel = rgb_sanity_check(pixel);
3533 setPixelColorInternal(x, y, pixel);
3542 run_default_oscillators();
3543 timings.master_speed = 0.003;
3544 calculate_oscillators(timings);
3546 for (
int x = 0; x < num_x; x++) {
3547 for (
int y = 0; y < num_y; y++) {
3549 animation.dist = (distance[x][y] * distance[x][y]) / 2;
3550 animation.angle = polar_theta[x][y];
3552 animation.scale_x = 0.005;
3553 animation.scale_y = 0.005;
3555 animation.offset_y = -10 * move.linear[0];
3556 animation.offset_x = 0;
3557 animation.offset_z = 0.1 * move.linear[0];
3560 animation.low_limit = 0;
3561 float show1 = render_value(animation);
3567 pixel.blue = 40 - show1;
3569 pixel = rgb_sanity_check(pixel);
3570 setPixelColorInternal(y, x, pixel);
3575 void Module_Experiment4() {
3579 timings.master_speed = 0.031;
3581 timings.ratio[0] = 0.0025;
3583 timings.ratio[1] = 0.0027;
3584 timings.ratio[2] = 0.029;
3585 timings.ratio[3] = 0.033;
3586 timings.ratio[4] = 0.036;
3589 calculate_oscillators(timings);
3591 for (
int x = 0; x < num_x; x++) {
3592 for (
int y = 0; y < num_y; y++) {
3596 animation.dist = (distance[x][y] * distance[x][y]) * 0.7;
3597 animation.angle = polar_theta[x][y];
3599 animation.scale_x = 0.004 * s;
3600 animation.scale_y = 0.003 * s;
3601 animation.offset_z = 0.1 * move.linear[2];
3602 animation.offset_y = -20 * move.linear[2];
3603 animation.offset_x = 10;
3604 animation.low_limit = 0;
3605 show1 = render_value(animation);
3607 animation.dist = (distance[x][y] * distance[x][y]) * 0.8;
3608 animation.angle = polar_theta[x][y];
3610 animation.scale_x = 0.004 * s;
3611 animation.scale_y = 0.003 * s;
3612 animation.offset_z = 0.1 * move.linear[3];
3613 animation.offset_y = -20 * move.linear[3];
3614 animation.offset_x = 100;
3615 animation.low_limit = 0;
3616 show2 = render_value(animation);
3618 animation.dist = (distance[x][y] * distance[x][y]) * 0.9;
3619 animation.angle = polar_theta[x][y];
3621 animation.scale_x = 0.004 * s;
3622 animation.scale_y = 0.003 * s;
3623 animation.offset_z = 0.1 * move.linear[4];
3624 animation.offset_y = -20 * move.linear[4];
3625 animation.offset_x = 1000;
3626 animation.low_limit = 0;
3627 show3 = render_value(animation);
3636 pixel.red = show1 - show2 - show3;
3637 pixel.blue = show2 - show1 - show3;
3638 pixel.green = show3 - show1 - show2;
3643 pixel = rgb_sanity_check(pixel);
3645 setPixelColorInternal(x, y, pixel);
3650 void Module_Experiment5() {
3654 timings.master_speed = 0.031;
3656 timings.ratio[0] = 0.0025;
3658 timings.ratio[1] = 0.0027;
3659 timings.ratio[2] = 0.029;
3660 timings.ratio[3] = 0.33;
3661 timings.ratio[4] = 0.036;
3664 calculate_oscillators(timings);
3666 for (
int x = 0; x < num_x; x++) {
3667 for (
int y = 0; y < num_y; y++) {
3671 animation.dist = distance[x][y] +
3672 sinf(0.5 * distance[x][y] - move.radial[3]);
3673 animation.angle = polar_theta[x][y];
3675 animation.scale_x = 0.1 * s;
3676 animation.scale_y = 0.1 * s;
3677 animation.offset_z = 0.1 * move.linear[0];
3678 animation.offset_y = -20 * move.linear[0];
3679 animation.offset_x = 10;
3680 animation.low_limit = 0;
3681 show1 = render_value(animation);
3687 pixel = rgb_sanity_check(pixel);
3689 setPixelColorInternal(x, y, pixel);
3694 void Module_Experiment6() {
3698 timings.master_speed = 0.01;
3702 timings.ratio[0] = 0.0025;
3704 timings.ratio[1] = 0.0027;
3705 timings.ratio[2] = 0.029;
3706 timings.ratio[3] = 0.33 * w;
3707 timings.ratio[4] = 0.36 * w;
3710 calculate_oscillators(timings);
3712 for (
int x = 0; x < num_x; x++) {
3713 for (
int y = 0; y < num_y; y++) {
3717 animation.dist = distance[x][y] +
3718 sinf(0.25 * distance[x][y] - move.radial[3]);
3719 animation.angle = polar_theta[x][y];
3721 animation.scale_x = 0.1 * s;
3722 animation.scale_y = 0.1 * s;
3723 animation.offset_z = 0.1 * move.linear[0];
3724 animation.offset_y = -20 * move.linear[0];
3725 animation.offset_x = 10;
3726 animation.low_limit = 0;
3727 show1 = render_value(animation);
3729 animation.dist = distance[x][y] +
3730 sinf(0.24 * distance[x][y] - move.radial[4]);
3731 animation.angle = polar_theta[x][y];
3733 animation.scale_x = 0.1 * s;
3734 animation.scale_y = 0.1 * s;
3735 animation.offset_z = 0.1 * move.linear[1];
3736 animation.offset_y = -20 * move.linear[1];
3737 animation.offset_x = 10;
3738 animation.low_limit = 0;
3739 show2 = render_value(animation);
3747 pixel.red = (show1 + show2);
3748 pixel.green = ((show1 + show2) * 0.6) - 30;
3751 pixel = rgb_sanity_check(pixel);
3753 setPixelColorInternal(x, y, pixel);
3758 void Module_Experiment7() {
3762 timings.master_speed = 0.005;
3766 timings.ratio[0] = 0.01;
3768 timings.ratio[1] = 0.011;
3769 timings.ratio[2] = 0.029;
3770 timings.ratio[3] = 0.33 * w;
3771 timings.ratio[4] = 0.36 * w;
3774 calculate_oscillators(timings);
3776 for (
int x = 0; x < num_x; x++) {
3777 for (
int y = 0; y < num_y; y++) {
3782 2 + distance[x][y] +
3783 2 * sinf(0.25 * distance[x][y] - move.radial[3]);
3784 animation.angle = polar_theta[x][y];
3786 animation.scale_x = 0.1 * s;
3787 animation.scale_y = 0.1 * s;
3788 animation.offset_z = 10 * move.linear[0];
3789 animation.offset_y = -20 * move.linear[0];
3790 animation.offset_x = 10;
3791 animation.low_limit = 0;
3792 show1 = render_value(animation);
3795 2 + distance[x][y] +
3796 2 * sinf(0.24 * distance[x][y] - move.radial[4]);
3797 animation.angle = polar_theta[x][y];
3799 animation.scale_x = 0.1 * s;
3800 animation.scale_y = 0.1 * s;
3801 animation.offset_z = 0.1 * move.linear[1];
3802 animation.offset_y = -20 * move.linear[1];
3803 animation.offset_x = 10;
3804 animation.low_limit = 0;
3805 show2 = render_value(animation);
3813 pixel.red = (show1 + show2);
3814 pixel.green = ((show1 + show2) * 0.6) - 50;
3817 pixel = rgb_sanity_check(pixel);
3819 setPixelColorInternal(x, y, pixel);
3824 void Module_Experiment8() {
3828 timings.master_speed = 0.01;
3832 timings.ratio[0] = 0.01;
3834 timings.ratio[1] = 0.011;
3835 timings.ratio[2] = 0.013;
3836 timings.ratio[3] = 0.33 * w;
3837 timings.ratio[4] = 0.36 * w;
3839 timings.ratio[5] = 0.38 * w;
3840 timings.ratio[6] = 0.0003;
3842 timings.offset[0] = 0;
3843 timings.offset[1] = 100;
3844 timings.offset[2] = 200;
3845 timings.offset[3] = 300;
3846 timings.offset[4] = 400;
3847 timings.offset[5] = 500;
3848 timings.offset[6] = 600;
3850 calculate_oscillators(timings);
3852 for (
int x = 0; x < num_x; x++) {
3853 for (
int y = 0; y < num_y; y++) {
3859 3 + distance[x][y] +
3860 3 * sinf(0.25 * distance[x][y] - move.radial[3]);
3861 animation.angle = polar_theta[x][y] + move.noise_angle[0] +
3862 move.noise_angle[6];
3864 animation.scale_x = 0.1 * s;
3865 animation.scale_y = 0.1 * s;
3866 animation.offset_z = 10 * move.linear[0];
3867 animation.offset_y = -5 * r * move.linear[0];
3868 animation.offset_x = 10;
3869 animation.low_limit = 0;
3870 show1 = render_value(animation);
3873 4 + distance[x][y] +
3874 4 * sinf(0.24 * distance[x][y] - move.radial[4]);
3875 animation.angle = polar_theta[x][y] + move.noise_angle[1] +
3876 move.noise_angle[6];
3878 animation.scale_x = 0.1 * s;
3879 animation.scale_y = 0.1 * s;
3880 animation.offset_z = 0.1 * move.linear[1];
3881 animation.offset_y = -5 * r * move.linear[1];
3882 animation.offset_x = 100;
3883 animation.low_limit = 0;
3884 show2 = render_value(animation);
3887 5 + distance[x][y] +
3888 5 * sinf(0.23 * distance[x][y] - move.radial[5]);
3889 animation.angle = polar_theta[x][y] + move.noise_angle[2] +
3890 move.noise_angle[6];
3892 animation.scale_x = 0.1 * s;
3893 animation.scale_y = 0.1 * s;
3894 animation.offset_z = 0.1 * move.linear[2];
3895 animation.offset_y = -5 * r * move.linear[2];
3896 animation.offset_x = 1000;
3897 animation.low_limit = 0;
3898 show3 = render_value(animation);
3900 show4 = colordodge(show1, show2);
3902 float rad = sinf(PI / 2 +
3903 distance[x][y] / 14);
3911 pixel.red = rad * ((show1 + show2) + show3);
3912 pixel.green = (((show2 + show3) * 0.8) - 90) * rad;
3913 pixel.blue = show4 * 0.2;
3915 pixel = rgb_sanity_check(pixel);
3917 setPixelColorInternal(x, y, pixel);
3922 void Module_Experiment9() {
3926 timings.master_speed = 0.03;
3930 timings.ratio[0] = 0.1;
3932 timings.ratio[1] = 0.011;
3933 timings.ratio[2] = 0.013;
3934 timings.ratio[3] = 0.33 * w;
3935 timings.ratio[4] = 0.36 * w;
3937 timings.ratio[5] = 0.38 * w;
3938 timings.ratio[6] = 0.0003;
3940 calculate_oscillators(timings);
3942 for (
int x = 0; x < num_x; x++) {
3943 for (
int y = 0; y < num_y; y++) {
3945 animation.dist = distance[x][y];
3946 animation.angle = polar_theta[x][y] + move.radial[1];
3948 animation.scale_x = 0.001;
3949 animation.scale_y = 0.1;
3950 animation.scale_z = 0.1;
3951 animation.offset_y = -10 * move.linear[0];
3952 animation.offset_x = 20;
3953 animation.offset_z = 10;
3954 animation.low_limit = 0;
3955 show1 = render_value(animation);
3957 pixel.red = 10 * show1;
3961 pixel = rgb_sanity_check(pixel);
3963 setPixelColorInternal(x, y, pixel);
3968 void Module_Experiment10() {
3972 timings.master_speed = 0.01;
3976 timings.ratio[0] = 0.01;
3978 timings.ratio[1] = 0.011;
3979 timings.ratio[2] = 0.013;
3980 timings.ratio[3] = 0.33 * w;
3981 timings.ratio[4] = 0.36 * w;
3983 timings.ratio[5] = 0.38 * w;
3984 timings.ratio[6] = 0.0003;
3986 timings.offset[0] = 0;
3987 timings.offset[1] = 100;
3988 timings.offset[2] = 200;
3989 timings.offset[3] = 300;
3990 timings.offset[4] = 400;
3991 timings.offset[5] = 500;
3992 timings.offset[6] = 600;
3994 calculate_oscillators(timings);
3996 for (
int x = 0; x < num_x; x++) {
3997 for (
int y = 0; y < num_y; y++) {
4003 3 + distance[x][y] +
4004 3 * sinf(0.25 * distance[x][y] - move.radial[3]);
4005 animation.angle = polar_theta[x][y] + move.noise_angle[0] +
4006 move.noise_angle[6];
4008 animation.scale_x = 0.1 * s;
4009 animation.scale_y = 0.1 * s;
4010 animation.offset_z = 10 * move.linear[0];
4011 animation.offset_y = -5 * r * move.linear[0];
4012 animation.offset_x = 10;
4013 animation.low_limit = 0;
4014 show1 = render_value(animation);
4017 4 + distance[x][y] +
4018 4 * sinf(0.24 * distance[x][y] - move.radial[4]);
4019 animation.angle = polar_theta[x][y] + move.noise_angle[1] +
4020 move.noise_angle[6];
4022 animation.scale_x = 0.1 * s;
4023 animation.scale_y = 0.1 * s;
4024 animation.offset_z = 0.1 * move.linear[1];
4025 animation.offset_y = -5 * r * move.linear[1];
4026 animation.offset_x = 100;
4027 animation.low_limit = 0;
4028 show2 = render_value(animation);
4031 5 + distance[x][y] +
4032 5 * sinf(0.23 * distance[x][y] - move.radial[5]);
4033 animation.angle = polar_theta[x][y] + move.noise_angle[2] +
4034 move.noise_angle[6];
4036 animation.scale_x = 0.1 * s;
4037 animation.scale_y = 0.1 * s;
4038 animation.offset_z = 0.1 * move.linear[2];
4039 animation.offset_y = -5 * r * move.linear[2];
4040 animation.offset_x = 1000;
4041 animation.low_limit = 0;
4042 show3 = render_value(animation);
4044 show4 = colordodge(show1, show2);
4046 float rad = sinf(PI / 2 +
4047 distance[x][y] / 14);
4055 CHSV(rad * ((show1 + show2) + show3), 255, 255);
4057 pixel = rgb_sanity_check(pixel);
4059 uint8_t a = getTime() / 100;
4060 CRGB p =
CRGB(
CHSV(((a + show1 + show2) + show3), 255, 255));
4063 pixel.green = p.
green;
4064 pixel.blue = p.
blue;
4065 setPixelColorInternal(x, y, pixel);