// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2014 Daniele Panozzo // // 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_onto_mesh.h" #include "EmbreeIntersector.h" #include #include #include IGL_INLINE bool igl::embree::unproject_onto_mesh( const Eigen::Vector2f& pos, const Eigen::MatrixXi& F, const Eigen::Matrix4f& model, const Eigen::Matrix4f& proj, const Eigen::Vector4f& viewport, const EmbreeIntersector & ei, int& fid, Eigen::Vector3f& bc) { using namespace std; using namespace Eigen; MatrixXd obj; vector hits; // This is lazy, it will find more than just the first hit unproject_in_mesh(pos,model,proj,viewport,ei,obj,hits); if (hits.size()> 0) { bc << 1.0-hits[0].u-hits[0].v, hits[0].u, hits[0].v; fid = hits[0].id; return true; } return false; } IGL_INLINE bool igl::embree::unproject_onto_mesh( const Eigen::Vector2f& pos, const Eigen::MatrixXi& F, const Eigen::Matrix4f& model, const Eigen::Matrix4f& proj, const Eigen::Vector4f& viewport, const EmbreeIntersector & ei, int& fid, int& vid) { Eigen::Vector3f bc; bool hit = unproject_onto_mesh(pos,F,model,proj,viewport,ei,fid,bc); int i; if (hit) { bc.maxCoeff(&i); vid = F(fid,i); } return hit; } #ifdef IGL_STATIC_LIBRARY // Explicit template specialization #endif