From 3f7290cdc635ad83a85d1a84a91847d1d6f44157 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Fri, 23 Aug 2019 14:59:31 +0200 Subject: [PATCH] Lower voxel resolution, use padding --- src/ifcgeomserver/IfcGeomServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeomserver/IfcGeomServer.cpp b/src/ifcgeomserver/IfcGeomServer.cpp index 1acef29553..62ddf738c9 100644 --- a/src/ifcgeomserver/IfcGeomServer.cpp +++ b/src/ifcgeomserver/IfcGeomServer.cpp @@ -535,7 +535,7 @@ public: bounds[1].get(i) = bbox_xyz[i + 3]; } progress_writer silent; - auto surface = storage_for(bounds, 256U); + auto surface = storage_for(bounds, 128U, 4U); processor proc(surface, silent); std::vector > geometries = { {1, compound} }; proc.process(geometries.begin(), geometries.end(), SURFACE(), output(MERGED()));