Browse Source

VF reader

Former-commit-id: 882ced52c440e4308ddf3bb25c632a9681134453
Alec Jacobson 10 years ago
parent
commit
d38b91d47d
1 changed files with 7 additions and 0 deletions
  1. 7 0
      include/igl/readPLY.h

+ 7 - 0
include/igl/readPLY.h

@@ -46,6 +46,13 @@ namespace igl
     Eigen::PlainObjectBase<DerivedF> & F,
     Eigen::PlainObjectBase<DerivedN> & N,
     Eigen::PlainObjectBase<DerivedUV> & UV);
+  template <
+    typename DerivedV,
+    typename DerivedF>
+  IGL_INLINE bool readPLY(
+    const std::string & filename,
+    Eigen::PlainObjectBase<DerivedV> & V,
+    Eigen::PlainObjectBase<DerivedF> & F);
 }
 #ifndef IGL_STATIC_LIBRARY
 #  include "readPLY.cpp"