From f24fcaa691389d82640f4b3edd2ed4d17e1bcc9c Mon Sep 17 00:00:00 2001 From: Yggdrasil75 Date: Wed, 28 Jan 2026 14:48:02 -0500 Subject: [PATCH] minor positioning changes --- tests/g3etest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/g3etest.cpp b/tests/g3etest.cpp index a1c79aa..02a5056 100644 --- a/tests/g3etest.cpp +++ b/tests/g3etest.cpp @@ -39,7 +39,7 @@ struct spheredefaults { float reflection = 0.0f; float refraction = 0.0f; bool fillInside = true; - float voxelSize = 1.0f; + float voxelSize = 10.0f; }; struct ceilingdefaults { @@ -70,7 +70,7 @@ void createSphere(const defaults& config, const spheredefaults& sconfig, Octree< int maxY = std::min(config.gridSizecube, (int)(sconfig.centerY + sconfig.radius + 1)); int minZ = std::max(0, (int)(sconfig.centerZ - sconfig.radius - 1)); int maxZ = std::min(config.gridSizecube, (int)(sconfig.centerZ + sconfig.radius + 1)); - + float radSq = sconfig.radius * sconfig.radius; float innerRadSq = 0.0f; if (!sconfig.fillInside) {