new line added at the end of file

This commit is contained in:
ganovelli 2004-05-12 10:19:30 +00:00
parent e247c73b46
commit 40e7807c68
5 changed files with 25 additions and 10 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.2 2004/05/10 14:26:33 ganovelli
argument name removed to avoid "unreference variable"warning
Revision 1.1 2004/03/03 15:00:51 cignoni
Initial commit

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.3 2004/03/18 15:30:46 cignoni
Removed float/double warning
Revision 1.2 2004/03/09 21:26:47 cignoni
cr lf mismatch

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.4 2004/05/04 02:36:07 ganovelli
#ifndef __VCGLIB_IMPORTERPLY added
Revision 1.3 2004/04/03 13:30:01 cignoni
missing include allocate.h
@ -693,8 +696,8 @@ static int Open( OpenMeshType &m, const char * filename, PlyInfo &pi )
// Caricamento camera da un ply
int LoadCamera(const char * filename)
{
PlyFile pf;
if( pf.Open(filename,PlyFile::MODE_READ)==-1 )
vcg::ply::PlyFile pf;
if( pf.Open(filename,vcg::ply::PlyFile::MODE_READ)==-1 )
{
pi.status = pf.GetError();
return -1;
@ -768,8 +771,8 @@ int LoadCamera(const char * filename)
bool LoadMask(const char * filename, int &mask)
{
mask=0;
PlyFile pf;
if( pf.Open(filename,PlyFile::MODE_READ)==-1 )
vcg::ply::PlyFile pf;
if( pf.Open(filename,vcg::ply::PlyFile::MODE_READ)==-1 )
{
pi.status = pf.GetError();
return false;

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.2 2004/03/09 21:26:47 cignoni
cr lf mismatch
Revision 1.1 2004/03/03 15:00:51 cignoni
Initial commit

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.2 2004/03/09 21:26:47 cignoni
cr lf mismatch
Revision 1.1 2004/03/08 09:21:34 cignoni
Initial commit