From e8faa71fcf36530ff218203fa872f23297f5eb5f Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Mon, 19 Dec 2022 12:41:45 +0100 Subject: [PATCH] Decrease quality of preview meshes to improve processing time --- src/libslic3r/SLAPrintSteps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/SLAPrintSteps.cpp b/src/libslic3r/SLAPrintSteps.cpp index 630f6f85f4..ff827b5758 100644 --- a/src/libslic3r/SLAPrintSteps.cpp +++ b/src/libslic3r/SLAPrintSteps.cpp @@ -138,7 +138,7 @@ indexed_triangle_set SLAPrint::Steps::generate_preview_vdb( bench.start(); // update preview mesh - double vscale = 1. / po.m_config.layer_height.getFloat(); + double vscale = 1. / (1.5 * po.m_config.layer_height.getFloat()); auto voxparams = csg::VoxelizeParams{} .voxel_scale(vscale) .exterior_bandwidth(1.f)