Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/bmesh/operators/bmo_extrude.c')
-rw-r--r--source/blender/bmesh/operators/bmo_extrude.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/bmesh/operators/bmo_extrude.c b/source/blender/bmesh/operators/bmo_extrude.c
index 757f9b390d3..0a08b340e87 100644
--- a/source/blender/bmesh/operators/bmo_extrude.c
+++ b/source/blender/bmesh/operators/bmo_extrude.c
@@ -381,7 +381,7 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
/* calculate verts to delete */
BM_ITER_MESH (v, &iter, bm, BM_VERTS_OF_MESH) {
- if (v->e) { /* only deal with verts attached to geometry [#33651] */
+ if (v->e) { /* only deal with verts attached to geometry T33651. */
found = false;
BM_ITER_ELEM (e, &viter, v, BM_EDGES_OF_VERT) {
@@ -478,10 +478,10 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
BMVert *v1 = e->v1, *v2 = e->v2;
/* The original edge was excluded,
- * this would result in a standalone wire edge - see [#30399] */
+ * this would result in a standalone wire edge - see T30399. */
BM_edge_kill(bm, e);
- /* kill standalone vertices from this edge - see [#32341] */
+ /* kill standalone vertices from this edge - see T32341. */
if (!v1->e) {
BM_vert_kill(bm, v1);
}
@@ -492,7 +492,7 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
continue;
}
- /* skip creating face for excluded edges see [#35503] */
+ /* skip creating face for excluded edges see T35503. */
if (BMO_slot_map_contains(slot_edges_exclude, e)) {
/* simply skip creating the face */
continue;
@@ -613,7 +613,7 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
e = v->e;
BMEdge *e_other = BM_DISK_EDGE_NEXT(e, v);
if ((e_other == e) || (BM_DISK_EDGE_NEXT(e_other, v) == e)) {
- /* Lose edge or BMVert is edge pair. */
+ /* Loose edge or BMVert is edge pair. */
BM_edge_collapse(bm, BMO_elem_flag_test(bm, e, EXT_TAG) ? e : e_other, v, true, true);
}
else {