Added status flag for isolated geometry that results from vertex duplication (due to non-manifold configurations).
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@314 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -276,10 +276,27 @@ public:
|
||||
vhandles[j] = mesh_.add_vertex(p);
|
||||
// DO STORE p, reference may not work since vertex array
|
||||
// may be relocated after adding a new vertex !
|
||||
|
||||
// Mark vertices of failed face as non-manifold
|
||||
if (mesh_.has_vertex_status()) {
|
||||
mesh_.status(vhandles[j]).set_fixed_nonmanifold(true);
|
||||
}
|
||||
}
|
||||
|
||||
// add face
|
||||
mesh_.add_face(vhandles);
|
||||
FaceHandle fh = mesh_.add_face(vhandles);
|
||||
|
||||
// Mark failed face as non-manifold
|
||||
if (mesh_.has_face_status())
|
||||
mesh_.status(fh).set_fixed_nonmanifold(true);
|
||||
|
||||
// Mark edges of failed face as non-two-manifold
|
||||
if (mesh_.has_edge_status()) {
|
||||
typename Mesh::FaceEdgeIter fe_it = mesh_.fe_iter(fh);
|
||||
for(; fe_it; ++fe_it) {
|
||||
mesh_.status(fe_it).set_fixed_nonmanifold(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
failed_faces_.clear();
|
||||
|
||||
@@ -78,7 +78,7 @@ enum StatusBits {
|
||||
FEATURE = 16, ///< Item is a feature or belongs to a feature.
|
||||
TAGGED = 32, ///< Item is tagged.
|
||||
TAGGED2 = 64, ///< Alternate bit for tagging an item.
|
||||
NONMANIFOLD = 128, ///< Item is non-two-manifold
|
||||
FIXEDNONMANIFOLD = 128, ///< Item was non-two-manifold and had to be fixed
|
||||
UNUSED = 256 ///< Unused
|
||||
};
|
||||
|
||||
@@ -139,10 +139,10 @@ public:
|
||||
void set_tagged2(bool _b) { change_bit(TAGGED2, _b); }
|
||||
|
||||
|
||||
/// is non-manifold ?
|
||||
bool nonmanifold() const { return is_bit_set(NONMANIFOLD); }
|
||||
/// set non-manifold
|
||||
void set_nonmanifold(bool _b) { change_bit(NONMANIFOLD, _b); }
|
||||
/// is fixed non-manifold ?
|
||||
bool fixed_nonmanifold() const { return is_bit_set(FIXEDNONMANIFOLD); }
|
||||
/// set fixed non-manifold
|
||||
void set_fixed_nonmanifold(bool _b) { change_bit(FIXEDNONMANIFOLD, _b); }
|
||||
|
||||
|
||||
/// return whole status
|
||||
|
||||
Reference in New Issue
Block a user