From 0c728e7250ec6c0a3bd37a04b11a868173fde29f Mon Sep 17 00:00:00 2001 From: ponchio Date: Mon, 19 Nov 2007 16:31:55 +0000 Subject: [PATCH] loadmask in Open is now written. --- wrap/io_trimesh/import_ply.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wrap/io_trimesh/import_ply.h b/wrap/io_trimesh/import_ply.h index 146d8db7..bf4df5c5 100644 --- a/wrap/io_trimesh/import_ply.h +++ b/wrap/io_trimesh/import_ply.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.37 2007/10/19 22:13:37 cignoni +added support for per-vertex normal for reading ply point clouds + Revision 1.36 2007/07/02 12:33:34 cignoni wedge colors now are loaded into face color if they are available. @@ -387,8 +390,9 @@ static int Open( OpenMeshType &m, const char * filename, int & loadmask, CallBac { PlyInfo pi; pi.cb=cb; - return Open(m, filename,pi); + int r = Open(m, filename,pi); loadmask=pi.mask; + return r; }