Skip to content

Commit

Permalink
Renaming bvh to raycasting
Browse files Browse the repository at this point in the history
  • Loading branch information
xelatihy committed Jan 30, 2024
1 parent 0af4e82 commit 1d6113c
Show file tree
Hide file tree
Showing 10 changed files with 422 additions and 561 deletions.
2 changes: 1 addition & 1 deletion docs/yocto/yocto_bvh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Yocto/Bvh provides ray-intersection and point-overlap queries accelerated
using a two-level BVH or wrapping Intel's Embree.
Yocto/Bvh is implemented in `yocto_bvh.h` and `yocto_bvh.cpp`.
Yocto/Bvh is implemented in `yocto_raycasting.h` and `yocto_raycasting.cpp`.

## BVH representation

Expand Down
3 changes: 1 addition & 2 deletions libs/yocto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ add_library(yocto STATIC
yocto_math.h
yocto_sampling.h yocto_shading.h
yocto_modeling.h yocto_animation.h
yocto_bvh.h yocto_bvh.cpp
yocto_ebvh.h yocto_ebvh.cpp
yocto_raycasting.h yocto_raycasting.cpp
yocto_shape.h yocto_shape.cpp
yocto_image.h yocto_image.cpp
yocto_scene.h yocto_scene.cpp
Expand Down
2 changes: 1 addition & 1 deletion libs/yocto/yocto_diagram.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
// INCLUDES
// -----------------------------------------------------------------------------

#include <yocto/yocto_bvh.h>
#include <yocto/yocto_raycasting.h>
#include <yocto/yocto_scene.h>

#include <array>
Expand Down
Loading

0 comments on commit 1d6113c

Please sign in to comment.