From 01331350e462b865c5aa33b9e58343c413cac539 Mon Sep 17 00:00:00 2001 From: numzero Date: Sat, 28 Sep 2024 12:27:46 +0300 Subject: [PATCH] Finer grained traces in flat subregions --- src/tube/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tube/mod.rs b/src/tube/mod.rs index 797e493..9f7b434 100644 --- a/src/tube/mod.rs +++ b/src/tube/mod.rs @@ -236,7 +236,7 @@ impl DebugTraceable for Space { let Some(ray_outta_flat) = ret.end else { return (hits, RayPath { points }); }; - points.extend(self.line(ray_into_flat.pos, ray_outta_flat.pos, 10.0)); + points.extend(self.line(ray_into_flat.pos, ray_outta_flat.pos, 1.0)); ray = ray_outta_flat; } panic!("tracing didn't terminate");