Browse Source

better hgignores explicit instanciation for doublearea

Former-commit-id: fa5ae6be0815226faedb0f332e4c8c0c533180a2
Alec Jacobson (jalec 11 years ago
parent
commit
bc64088603
3 changed files with 5 additions and 0 deletions
  1. 2 0
      .hgignore
  2. 2 0
      ACKNOWLEDGEMENTS
  3. 1 0
      include/igl/doublearea.cpp

+ 2 - 0
.hgignore

@@ -18,3 +18,5 @@ external/embree/bin/*
 external/embree/doc/html/*
 external/embree/doc/latex/*
 .DS_Store
+libigl.zip
+*tags

+ 2 - 0
ACKNOWLEDGEMENTS

@@ -0,0 +1,2 @@
+Qiong Wu (pointing out compilation errors in Windows)
+Gaurav Bharaj (pointing out bug in remove_duplicate_vertices.cpp)

+ 1 - 0
include/igl/doublearea.cpp

@@ -40,4 +40,5 @@ IGL_INLINE void igl::doublearea(
 #ifndef IGL_HEADER_ONLY
 template void igl::doublearea<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, 1, 0, -1, 1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> >&);
 template void igl::doublearea<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, 1, 0, -1, 1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> >&);
+template void igl::doublearea<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
 #endif