add python binding for writePLY

Former-commit-id: 89248fc18f
This commit is contained in:
Daniel Crispell
2017-06-30 21:57:51 -04:00
parent 478fb4d667
commit 2115264e37
5 changed files with 35 additions and 0 deletions
+8
View File
@@ -1410,3 +1410,11 @@ const char *__doc_igl_writeOBJ = R"igl_Qu8mg5v7(// Write a mesh in an ascii obj
//
// Known issues: Horrifyingly, this does not have the same order of
// parameters as readOBJ.)igl_Qu8mg5v7";
const char *__doc_igl_writePLY = R"igl_Qu8mg5v7(// Write a mesh in an ascii ply file
// Inputs:
// str path to outputfile
// V #V by 3 mesh vertex positions
// F #F by 3 mesh indices into V
// N #V by 3 normal vectors
// UV #V by 2 texture coordinates
// Returns true on success, false on error)igl_Qu8mg5v7";