Added a missing HasPerVertexRadius

This commit is contained in:
Paolo Cignoni 2009-03-19 16:22:23 +00:00
parent 389cc089db
commit c955238597
1 changed files with 3 additions and 0 deletions

View File

@ -527,6 +527,9 @@ bool HasPerVertexFlags (const TriMesh < VertContainerType , FaceContainerType, E
template < class VertContainerType, class FaceContainerType, class EdgeContainerType > template < class VertContainerType, class FaceContainerType, class EdgeContainerType >
bool HasPerVertexNormal (const TriMesh < VertContainerType , FaceContainerType, EdgeContainerType> & /*m*/) {return VertContainerType::value_type::HasNormal();} bool HasPerVertexNormal (const TriMesh < VertContainerType , FaceContainerType, EdgeContainerType> & /*m*/) {return VertContainerType::value_type::HasNormal();}
template < class VertContainerType, class FaceContainerType, class EdgeContainerType >
bool HasPerVertexRadius (const TriMesh < VertContainerType , FaceContainerType, EdgeContainerType> & /*m*/) {return VertContainerType::value_type::HasRadius();}
template < class VertContainerType, class FaceContainerType, class EdgeContainerType > template < class VertContainerType, class FaceContainerType, class EdgeContainerType >
bool HasPerWedgeTexCoord (const TriMesh < VertContainerType , FaceContainerType, EdgeContainerType> & /*m*/) {return FaceContainerType::value_type::HasWedgeTexCoord();} bool HasPerWedgeTexCoord (const TriMesh < VertContainerType , FaceContainerType, EdgeContainerType> & /*m*/) {return FaceContainerType::value_type::HasWedgeTexCoord();}