From 032eaf47fd2fbbfd165e8a8953a77b17e9f1c160 Mon Sep 17 00:00:00 2001 From: mcallieri Date: Mon, 7 Sep 2015 09:42:50 +0000 Subject: [PATCH] corrected a wrong template type (CMesh0 -> MESH_TYPE) --- wrap/io_trimesh/import_asc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/io_trimesh/import_asc.h b/wrap/io_trimesh/import_asc.h index 61a9353a..89f2e35f 100644 --- a/wrap/io_trimesh/import_asc.h +++ b/wrap/io_trimesh/import_asc.h @@ -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::FlipMesh(m); + tri::Clean::FlipMesh(m); return E_NOERROR; }