From 0193c62bb68f880d249de0288171937318d0972a Mon Sep 17 00:00:00 2001 From: Jack Grogan Date: Fri, 1 Nov 2024 16:49:39 +0000 Subject: [PATCH] Implementation of raytracing in implicitBVH.jl --- test/runtests.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 6990d45..6eceb4f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -240,6 +240,8 @@ end @testset "ray-box isintersection" begin + using ImplicitBVH: isintersection + # Below box and ray going through corner box = BBox((0., 0., 0.), (1., 1., 1.)) point = [-1., -1., -1.]