// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2013 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 "barycentric_to_global.h" // For error printing #include #include namespace igl { template IGL_INLINE Eigen::Matrix barycentric_to_global( const Eigen::Matrix & V, const Eigen::Matrix & F, const Eigen::Matrix & bc) { Eigen::Matrix R; R.resize(bc.rows(),3); for (unsigned i=0; i igl::barycentric_to_global(Eigen::Matrix const&, Eigen::Matrix const&, Eigen::Matrix const&); #endif