Browse Source

Merge pull request #1441 from BruegelN/fix-average_onto_faces-namespace

Added igl namespace average_onto_faces.cpp
Jérémie Dumas 5 years ago
parent
commit
b550323ef0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/igl/average_onto_faces.cpp

+ 1 - 1
include/igl/average_onto_faces.cpp

@@ -8,7 +8,7 @@
 #include "average_onto_faces.h"
 
 template <typename DerivedF, typename DerivedS, typename DerivedSF>
-IGL_INLINE void average_onto_faces(
+IGL_INLINE void igl::average_onto_faces(
   const Eigen::MatrixBase<DerivedF> & F,
   const Eigen::MatrixBase<DerivedS> & S,
   Eigen::PlainObjectBase<DerivedSF> & SF)