// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2013 Alec Jacobson // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. #include "unproject_in_mesh.h" #include "EmbreeIntersector.h" #include "../unproject_ray.h" #include "../unproject_in_mesh.h" #include template IGL_INLINE int igl::embree::unproject_in_mesh( const Eigen::Vector2f& pos, const Eigen::Matrix4f& model, const Eigen::Matrix4f& proj, const Eigen::Vector4f& viewport, const EmbreeIntersector & ei, Eigen::PlainObjectBase & obj, std::vector & hits) { using namespace std; using namespace Eigen; const auto & shoot_ray = [&ei]( const Eigen::Vector3f& s, const Eigen::Vector3f& dir, std::vector & hits) { int num_rays_shot; ei.intersectRay(s,dir,hits,num_rays_shot); }; return igl::unproject_in_mesh(pos,model,proj,viewport,shoot_ray,obj,hits); } template IGL_INLINE int igl::embree::unproject_in_mesh( const Eigen::Vector2f& pos, const Eigen::Matrix4f& model, const Eigen::Matrix4f& proj, const Eigen::Vector4f& viewport, const EmbreeIntersector & ei, Eigen::PlainObjectBase & obj) { std::vector hits; return unproject_in_mesh(pos,model,proj,viewport,ei,obj,hits); } #ifdef IGL_STATIC_LIBRARY template int igl::embree::unproject_in_mesh >(Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&, igl::embree::EmbreeIntersector const&, Eigen::PlainObjectBase >&, std::vector >&); template int igl::embree::unproject_in_mesh >(Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&, igl::embree::EmbreeIntersector const&, Eigen::PlainObjectBase >&, std::vector >&); template int igl::embree::unproject_in_mesh >(Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&, igl::embree::EmbreeIntersector const&, Eigen::PlainObjectBase >&); #endif