From 147b88c14094acea7d68ed8daaf0f1ea7771ce62 Mon Sep 17 00:00:00 2001 From: dominic-chang Date: Tue, 11 Feb 2025 14:51:49 -0500 Subject: [PATCH] Increase axis limits in raytracing mesh example for better visualization --- examples/raytracing-mesh-example.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/raytracing-mesh-example.jl b/examples/raytracing-mesh-example.jl index 162d941..f7ecf35 100644 --- a/examples/raytracing-mesh-example.jl +++ b/examples/raytracing-mesh-example.jl @@ -73,9 +73,9 @@ ax3 = GLMk.Axis3(fig[2, 1], aspect = (1, 1, 1), title = "Isometric view of scene ax = GLMk.Axis(fig[2, 2], aspect = 1, title = "Heatmap of ray intersections with mesh") for a in [ax1, ax2, ax3] - GLMk.xlims!(a, (-10, 10)) - GLMk.ylims!(a, (-10, 10)) - GLMk.zlims!(a, (-10, 10)) + GLMk.xlims!(a, (-20, 20)) + GLMk.ylims!(a, (-20, 20)) + GLMk.zlims!(a, (-20, 20)) GLMk.hidedecorations!(a) end