94 lines
3.8 KiB
C++
94 lines
3.8 KiB
C++
/****************************************************************************
|
|
* VCGLib o o *
|
|
* Visual and Computer Graphics Library o o *
|
|
* _ O _ *
|
|
* Copyright(C) 2014 \/)\/ *
|
|
* Visual Computing Lab /\/| *
|
|
* ISTI - Italian National Research Council | *
|
|
* \ *
|
|
* All rights reserved. *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
|
|
* for more details. *
|
|
* *
|
|
****************************************************************************/
|
|
#ifndef __VCGLIB_MESH_ASSERT
|
|
#define __VCGLIB_MESH_ASSERT
|
|
|
|
#include <vcg/complex/complex.h>
|
|
|
|
namespace vcg {
|
|
namespace tri {
|
|
/**
|
|
* \brief For checking the adequacy of a mesh to a given algorithm.
|
|
*
|
|
* While the many RequireXXX functions allow to check the static correctness of a mesh and
|
|
* have a O(1) complexity, in many cases we need to run more complex checks to be sure that
|
|
* the subsequent algorithm can run without issues.
|
|
* Typical cases are the fact that there are no unreferenced vertices (NoUnreferencedVertex)
|
|
* or a given adjacency is correctly initialized (and not only statically present as a type component).
|
|
*
|
|
*/
|
|
template <class MeshType>
|
|
class MeshAssert
|
|
{
|
|
public:
|
|
typedef typename MeshType::VertexType VertexType;
|
|
typedef typename MeshType::VertexIterator VertexIterator;
|
|
typedef typename MeshType::FaceType FaceType;
|
|
typedef typename MeshType::FaceIterator FaceIterator;
|
|
typedef typename MeshType::CoordType CoordType;
|
|
typedef typename MeshType::ScalarType ScalarType;
|
|
|
|
static void FFAdjacencyIsInitialized(MeshType &m)
|
|
{
|
|
for(FaceIterator fi=m.face.begin();fi!=m.face.end();++fi)
|
|
{
|
|
if(!fi->IsD())
|
|
for(int i=0;i<fi->VN();++i)
|
|
{
|
|
if(fi->FFp(i)==0)
|
|
throw vcg::MissingPreconditionException("FF adjacency is not initialized");
|
|
}
|
|
}
|
|
}
|
|
|
|
static void VFAdjacencyIsInitialized(MeshType &m)
|
|
{
|
|
for(VertexIterator vi=m.vert.begin();vi!=m.vert.end();++vi) if(!vi->IsD())
|
|
{
|
|
if(vi->VFp().IsNull())
|
|
throw vcg::MissingPreconditionException("VF adjacency is not initialized");
|
|
}
|
|
}
|
|
|
|
static void NoUnreferencedVertex(MeshType &m)
|
|
{
|
|
tri::UpdateFlags<MeshType>::VertexClearV(m);
|
|
for(FaceIterator fi=m.face.begin();fi!=m.face.end();++fi) if(!fi->IsD())
|
|
{
|
|
for(int i=0;i<fi->VN();++i) fi->V(i)->SetV();
|
|
}
|
|
|
|
for(VertexIterator vi=m.vert.begin();vi!=m.vert.end();++vi)
|
|
if(!vi->IsD())
|
|
{
|
|
if(!vi->IsV())
|
|
throw vcg::MissingPreconditionException("There are unreferenced vertices");
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
} // end namespace tri
|
|
} // end namespace vcg
|
|
#endif // __VCGLIB_MESH_ASSERT
|