Skip to content

Commit 5d2d5bb

Browse files
authored
Update ray_mesh_intersection.cpp
1 parent ef234a6 commit 5d2d5bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ray_mesh_intersection.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#include <npe.h>
2-
#include <igl/embree/EmbreeIntersector.h>
2+
#include <common/embree_intersector.h>
33
#include <tuple>
44
#include <numeric>
55

66
#include "common/common.h"
77

88
namespace py = pybind11;
99

10-
using Intersector = igl::embree::EmbreeIntersector;
10+
using Intersector = EmbreeIntersector;
1111
void hack_extra_ray_mesh_bindings(pybind11::module& m) {
1212
py::class_<Intersector, std::shared_ptr<Intersector>>(m, "_RayMeshIntersectorInternal")
1313
.def(py::init([]() {

0 commit comments

Comments
 (0)