From b6bf591ea382dde1d3fbed1b34632d590afa9de4 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 16 Nov 2005 15:59:46 +0000 Subject: [PATCH] Changed name of the component from to --- apps/trimeshinfo/trimeshinfo.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/trimeshinfo/trimeshinfo.cpp b/apps/trimeshinfo/trimeshinfo.cpp index 8c8a806b..3a811af6 100644 --- a/apps/trimeshinfo/trimeshinfo.cpp +++ b/apps/trimeshinfo/trimeshinfo.cpp @@ -24,6 +24,10 @@ History $Log: not supported by cvs2svn $ +Revision 1.10 2005/11/14 09:21:07 cignoni +Heavily restructured the code of Trimeshinfo. +Now divided the collecting part from the reporting one (xml and ascii) + Revision 1.9 2005/11/04 15:37:57 rita_borgo Removed Debug option @@ -110,8 +114,8 @@ using namespace vcg; class CFace; class CEdge; -class CVertex : public VertexSimp2< CVertex, CEdge, CFace, vert::Coord3f, vert::Flag, vert::Normal3f >{}; -class CFace : public FaceSimp2< CVertex, CEdge, CFace, face::FFAdj, face::VertexRef, face::Flag > {}; +class CVertex : public VertexSimp2< CVertex, CEdge, CFace, vert::Coord3f, vert::BitFlags, vert::Normal3f >{}; +class CFace : public FaceSimp2< CVertex, CEdge, CFace, face::FFAdj, face::VertexRef, face::BitFlags > {}; class CMesh : public vcg::tri::TriMesh< vector, vector > {}; typedef CMesh::VertexPointer VertexPointer;