Use stamp size for size of a dot in animation

master
Tomasz Golinski 2020-11-13 19:58:49 +01:00
rodzic baa4a51400
commit f0b18db02d
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -378,7 +378,7 @@ int main(int argc, char** argv) {
}
hmap.generate_path(heat_file, sorted_fcaches);
} else if (anim)
hmap.generate_anim(heat_file, sorted_caches, 2);
hmap.generate_anim(heat_file, sorted_caches, heat_stamp_size);
else
hmap.generate(heat_file, fcc, heat_stamp_size, (heat_exp == 1 ? "exp" : "soft"));
if (!anim)

Wyświetl plik

@ -322,7 +322,7 @@ int main(int argc, char** argv) {
if (trail)
hmap.generate_path(heat_file, sorted_caches);
else if (anim)
hmap.generate_anim(heat_file, sorted_caches, 2);
hmap.generate_anim(heat_file, sorted_caches, heat_stamp_size);
else
hmap.generate(heat_file, fcc, heat_stamp_size, (heat_exp == 1 ? "exp" : "soft"));
}