First set of changes to the new circulators
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@898 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -243,7 +243,7 @@ public:
|
||||
prev_rule()->raise(eh, _target_state - 1);
|
||||
}
|
||||
|
||||
for (fv_it = mesh_.fv_iter(_fh); fv_it; ++fv_it) {
|
||||
for (fv_it = mesh_.fv_iter(_fh); fv_it.is_valid(); ++fv_it) {
|
||||
|
||||
vh = fv_it.handle();
|
||||
prev_rule()->raise(vh, _target_state - 1);
|
||||
@@ -305,7 +305,7 @@ public:
|
||||
{
|
||||
|
||||
for (voh_it = mesh_.voh_iter(_vh); voh_it; ++voh_it) {
|
||||
halfedge_vector.push_back(voh_it.handle());
|
||||
halfedge_vector.push_back(*voh_it);
|
||||
}
|
||||
|
||||
while ( !halfedge_vector.empty() ) {
|
||||
@@ -316,7 +316,7 @@ public:
|
||||
}
|
||||
|
||||
for (voh_it = mesh_.voh_iter(_vh); voh_it; ++voh_it) {
|
||||
halfedge_vector.push_back(voh_it.handle());
|
||||
halfedge_vector.push_back(*voh_it);
|
||||
}
|
||||
|
||||
while ( !halfedge_vector.empty() ) {
|
||||
|
||||
Reference in New Issue
Block a user