Added new style HasPerFaceColor(m) and HasPerFaceMark(m)

This commit is contained in:
Paolo Cignoni 2006-05-03 21:35:31 +00:00
parent 9ce4c88f2a
commit 3cb1b4442d
1 changed files with 8 additions and 0 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.19 2005/12/02 00:05:34 cignoni
Added HasFlags and a couple of missing include files
Revision 1.18 2005/11/26 00:16:03 cignoni
added HasPerWedgeTexture taking mesh as input. (needed for optional components)
@ -307,6 +310,11 @@ bool HasPerWedgeTexture (const TriMesh < VertContainerType , FaceContainerType>
template < class VertContainerType, class FaceContainerType >
bool HasPerFaceFlags (const TriMesh < VertContainerType , FaceContainerType> & /*m*/) {return FaceContainerType::value_type::HasFlags();}
template < class VertContainerType, class FaceContainerType >
bool HasPerFaceColor (const TriMesh < VertContainerType , FaceContainerType> & /*m*/) {return FaceContainerType::value_type::HasFaceColor();}
template < class VertContainerType, class FaceContainerType >
bool HasPerFaceMark (const TriMesh < VertContainerType , FaceContainerType> & /*m*/) {return FaceContainerType::value_type::HasMark();}
/*@}*/
/*@}*/