From b7af37f7ff9ce127684b1535a78e7f115c574915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=82=E4=B9=8B=E9=92=B3?= Date: Fri, 24 Jul 2026 10:15:24 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20reduce=203d=5Fprint=20resolution=2080?= =?UTF-8?q?=E2=86=9240=20to=20avoid=20OOM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/08_3d_print/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/08_3d_print/main.cpp b/examples/08_3d_print/main.cpp index 9bad470..f97fad9 100644 --- a/examples/08_3d_print/main.cpp +++ b/examples/08_3d_print/main.cpp @@ -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);