fix: reduce 3d_print resolution 80→40 to avoid OOM
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 30s

This commit is contained in:
茂之钳
2026-07-24 10:15:24 +00:00
parent bfe2ecbe95
commit b7af37f7ff
+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 = 80;
const int resolution = 40;
auto mc = marching_cubes(shape_sdf, 0.0, bmin, bmax, resolution);