From 63f09aa04b6de2e2fa9882eee29799135689a9d2 Mon Sep 17 00:00:00 2001 From: cignoni Date: Mon, 13 Nov 2006 01:57:23 +0000 Subject: [PATCH] Added a missing prototype to ismanifold --- vcg/simplex/face/pos.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/vcg/simplex/face/pos.h b/vcg/simplex/face/pos.h index 1bf31ea9..808db7d5 100644 --- a/vcg/simplex/face/pos.h +++ b/vcg/simplex/face/pos.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.23 2006/11/09 17:22:56 cignoni +Added ismanifold + Revision 1.22 2006/10/07 14:24:26 cignoni Explained the use of V() operator of a pos @@ -108,13 +111,17 @@ namespace face { /** \addtogroup face */ /*@{*/ +// Needed Prototypes (pos is include before topology) +template +bool IsBorder(FaceType const & f, const int j ); +template +bool IsManifold(FaceType const & f, const int j ); + /** Templated over the class face, it stores a \em position over a face in a mesh. It contain a pointer to the current face, the index of one edge and a edge's incident vertex. */ -template -bool IsBorder(FaceType const & f, const int j ); template class Pos