more replacement for BM_edge_face_count() use.

This commit is contained in:
2012-04-18 06:57:28 +00:00
parent f1ececaabb
commit 1f01d62d15
6 changed files with 6 additions and 6 deletions

View File

@@ -158,7 +158,7 @@ static int BME_Bevel_Dissolve_Disk(BMesh *bm, BMVert *v)
/* hrmf, we could have a version of BM_vert_is_manifold() which checks for this case */
BM_ITER(e, &iter, bm, BM_EDGES_OF_VERT, v) {
if (BM_edge_face_count(e) != 2) {
if (!BM_edge_is_manifold(e)) {
return 0;
}
}