corrected a wrong template type (CMesh0 -> MESH_TYPE)

This commit is contained in:
Marco Callieri 2015-09-07 09:42:50 +00:00
parent d9f3b34498
commit 032eaf47fd
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ static int Open( MESH_TYPE &m, const char * filename, CallBackPos *cb=0, bool tr
cnt=m.vert.size();
qDebug("Grid is %i x %i = %i (%i) ",i,cnt/i,i* (cnt/i),cnt);
tri::FaceGrid(m,i,int(cnt/i));
tri::Clean<CMeshO>::FlipMesh(m);
tri::Clean<MESH_TYPE>::FlipMesh(m);
return E_NOERROR;
}