From 9dd981a44029b612f3925405d964c739dd537b5f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 16 May 2012 23:37:23 +0000 Subject: style cleanup: block comments --- source/blender/bmesh/operators/bmo_hull.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'source/blender/bmesh/operators/bmo_hull.c') diff --git a/source/blender/bmesh/operators/bmo_hull.c b/source/blender/bmesh/operators/bmo_hull.c index 2a48a531566..160db7cba75 100644 --- a/source/blender/bmesh/operators/bmo_hull.c +++ b/source/blender/bmesh/operators/bmo_hull.c @@ -509,7 +509,7 @@ static void hull_remove_overlapping(BMesh *bm, GHash *hull_triangles, BMEdge *e; /* Check that all the face's edges are on the hull, - otherwise can't reuse it */ + * otherwise can't reuse it */ f_on_hull = TRUE; BM_ITER_ELEM (e, &bm_iter2, f, BM_EDGES_OF_FACE) { if (!hull_final_edges_lookup(final_edges, e->v1, e->v2)) { @@ -519,9 +519,10 @@ static void hull_remove_overlapping(BMesh *bm, GHash *hull_triangles, } /* Note: can't change ghash while iterating, so mark - with 'skip' flag rather than deleting triangles */ + * with 'skip' flag rather than deleting triangles */ if (BM_vert_in_face(f, t->v[1]) && - BM_vert_in_face(f, t->v[2]) && f_on_hull) { + BM_vert_in_face(f, t->v[2]) && f_on_hull) + { t->skip = TRUE; BMO_elem_flag_disable(bm, f, HULL_FLAG_INTERIOR_ELE); BMO_elem_flag_enable(bm, f, HULL_FLAG_HOLE); @@ -544,7 +545,7 @@ static void hull_mark_interior_elements(BMesh *bm, BMOperator *op, } /* Mark all input faces as interior, some may be unmarked in - hull_remove_overlapping() */ + * hull_remove_overlapping() */ BMO_ITER (f, &oiter, bm, op, "input", BM_FACE) { BMO_elem_flag_enable(bm, f, HULL_FLAG_INTERIOR_ELE); } @@ -559,9 +560,9 @@ static void hull_tag_unused(BMesh *bm, BMOperator *op) BMFace *f; /* Mark vertices, edges, and faces that are already marked - interior (i.e. were already part of the input, but not part of - the hull), but that aren't also used by elements outside the - input set */ + * interior (i.e. were already part of the input, but not part of + * the hull), but that aren't also used by elements outside the + * input set */ BMO_ITER (v, &oiter, bm, op, "input", BM_VERT) { if (BMO_elem_flag_test(bm, v, HULL_FLAG_INTERIOR_ELE)) { int del = TRUE; -- cgit v1.2.3