// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2014 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 "local_basis.h" #include #include #include #include #include template IGL_INLINE void igl::local_basis( const Eigen::PlainObjectBase& V, const Eigen::PlainObjectBase& F, Eigen::PlainObjectBase& B1, Eigen::PlainObjectBase& B2, Eigen::PlainObjectBase& B3 ) { using namespace Eigen; using namespace std; B1.resize(F.rows(),3); B2.resize(F.rows(),3); B3.resize(F.rows(),3); for (unsigned i=0;i v1 = (V.row(F(i,1)) - V.row(F(i,0))).normalized(); Eigen::Matrix t = V.row(F(i,2)) - V.row(F(i,0)); Eigen::Matrix v3 = v1.cross(t).normalized(); Eigen::Matrix v2 = v1.cross(v3).normalized(); B1.row(i) = v1; B2.row(i) = -v2; B3.row(i) = v3; } } #ifdef IGL_STATIC_LIBRARY // Explicit template instantiation // generated by autoexplicit.sh template void igl::local_basis, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::local_basis, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); #endif