works now I think

This commit is contained in:
yggdrasil75
2025-11-16 10:13:27 -05:00
parent 10b2cdd11f
commit 74824c5368
3 changed files with 200 additions and 15 deletions

View File

@@ -13,7 +13,7 @@
struct AnimationConfig {
int width = 1024;
int height = 1024;
int totalFrames = 4800;
int totalFrames = 5;
float fps = 30.0f;
int numSeeds = 8;
};
@@ -109,6 +109,7 @@ void expandPixel(Grid2& grid, AnimationConfig config, std::vector<std::tuple<siz
}
}
seeds.clear();
seeds.shrink_to_fit();
seeds = std::move(newseeds);
}