From 66ae917613d8c6c24f2a941d8d028c03ba1dc8f3 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Fri, 17 Jul 2009 17:44:40 +0000 Subject: [PATCH] commented "int _t2=clock();" call in Crease function, it is unuseful and requires to include time.h --- wrap/gl/trimesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/gl/trimesh.h b/wrap/gl/trimesh.h index 73d955c5..f678b2ae 100644 --- a/wrap/gl/trimesh.h +++ b/wrap/gl/trimesh.h @@ -954,7 +954,7 @@ void Crease(MESH_TYPE &m, typename MESH_TYPE::scalar_type angleRad) VISITED_2= MESH_TYPE::FaceType::USER0<<2} ; int vis[3]={VISITED_0,VISITED_1,VISITED_2}; - int _t2=clock(); + //int _t2=clock(); typename MESH_TYPE::FaceIterator fi; for(fi=m.face.begin();fi!=m.face.end();++fi) if(!(*fi).IsD()) (*fi).Supervisor_Flags()&= (~(VISITED_0 | VISITED_1 | VISITED_2));