bmesh refactor - rename some of the BM_****_share_****_count() functions to BM_***_share_check()

some of these were only returning a boolean, others returned a count even though only a boolean was needed.

split some of the functions in two as well where check/count are both needed.
This commit is contained in:
2012-11-09 14:52:05 +00:00
parent dc5ba03945
commit 6cdb555e6e
8 changed files with 74 additions and 31 deletions

View File

@@ -261,7 +261,7 @@ static void edgering_sel(RingSelOpData *lcd, int previewlines, int select)
lasteed = eed;
}
if (lasteed != startedge && BM_edge_share_face_count(lasteed, startedge)) {
if (lasteed != startedge && BM_edge_share_face_check(lasteed, startedge)) {
v[1][0] = v[0][0];
v[1][1] = v[0][1];