well, I think its decent. I actually need to work on something else with this now.

This commit is contained in:
yggdrasil75
2025-11-16 17:25:24 -05:00
parent b1c0d84b8f
commit db47f2d731
4 changed files with 112 additions and 80 deletions

View File

@@ -11,9 +11,9 @@
#include "../util/timing_decorator.cpp"
struct AnimationConfig {
int width = 4096;
int height = 4096;
int totalFrames = 4800;
int width = 2048;
int height = 2048;
int totalFrames = 480;
float fps = 30.0f;
int numSeeds = 8;
};
@@ -75,6 +75,7 @@ void expandPixel(Grid2& grid, AnimationConfig config, std::vector<std::tuple<siz
visitedThisFrame.insert(std::get<0>(seed));
}
//#pragma omp parallel for
for (const std::tuple<size_t, Vec2, Vec4>& seed : seeds) {
size_t id = std::get<0>(seed);
Vec2 seedPOS = std::get<1>(seed);