loadmask in Open is now written.
This commit is contained in:
parent
a6c1721569
commit
0c728e7250
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$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
|
Revision 1.36 2007/07/02 12:33:34 cignoni
|
||||||
wedge colors now are loaded into face color if they are available.
|
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;
|
PlyInfo pi;
|
||||||
pi.cb=cb;
|
pi.cb=cb;
|
||||||
return Open(m, filename,pi);
|
int r = Open(m, filename,pi);
|
||||||
loadmask=pi.mask;
|
loadmask=pi.mask;
|
||||||
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue