fix: reduce 3d_print res to 30 to avoid OOM
CI / Build & Test (push) Failing after 34s
CI / Release Build (push) Failing after 29s

This commit is contained in:
茂之钳
2026-07-24 10:35:40 +00:00
parent d84688720f
commit 1cca3edd21
+1 -1
View File
@@ -91,7 +91,7 @@ int main() {
const Point3D bmin(-3.0, -3.0, -3.0);
const Point3D bmax( 3.0, 3.0, 3.0);
const int resolution = 40;
const int resolution = 30;
auto mc = marching_cubes(shape_sdf, 0.0, bmin, bmax, resolution);