소스 검색

VF reader

Former-commit-id: 882ced52c440e4308ddf3bb25c632a9681134453
Alec Jacobson 10 년 전
부모
커밋
d38b91d47d
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  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"