// 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 "snap_points.h" #include #include template < typename DerivedC, typename DerivedV, typename DerivedI, typename DerivedminD, typename DerivedVI> IGL_INLINE void igl::snap_points( const Eigen::PlainObjectBase & C, const Eigen::PlainObjectBase & V, Eigen::PlainObjectBase & I, Eigen::PlainObjectBase & minD, Eigen::PlainObjectBase & VI) { snap_points(C,V,I,minD); const int m = C.rows(); VI.resize(m,V.cols()); for(int c = 0;c IGL_INLINE void igl::snap_points( const Eigen::PlainObjectBase & C, const Eigen::PlainObjectBase & V, Eigen::PlainObjectBase & I, Eigen::PlainObjectBase & minD) { using namespace std; const int n = V.rows(); const int m = C.rows(); assert(V.cols() == C.cols() && "Dimensions should match"); // O(m*n) // // I believe there should be a way to do this in O(m*log(n) + n) assuming // reasonably distubed points. I.resize(m,1); typedef typename DerivedV::Scalar Scalar; minD.setConstant(m,1,numeric_limits::max()); for(int v = 0;v IGL_INLINE void igl::snap_points( const Eigen::PlainObjectBase & C, const Eigen::PlainObjectBase & V, Eigen::PlainObjectBase & I) { Eigen::Matrix minD; return igl::snap_points(C,V,I,minD); } #ifdef IGL_STATIC_LIBRARY // Explicit template instantiation template void igl::snap_points, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::snap_points, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); template void igl::snap_points, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); #endif