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:
authorCampbell Barton <ideasman42@gmail.com>2014-04-21 19:21:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-21 19:36:59 +0400
commit9d5ed605feb119bb3b5e40d12454f724022e8ed0 (patch)
tree11b6ee193d7a29be2a33a3f399225e9f446a697f /source/blender/bmesh/operators/bmo_inset.c
parent9bff19fbfd5292766671d2134a6442d5c3d7917a (diff)
BMesh Inset: remove hack to store coords in normals
Diffstat (limited to 'source/blender/bmesh/operators/bmo_inset.c')
-rw-r--r--source/blender/bmesh/operators/bmo_inset.c57
1 files changed, 38 insertions, 19 deletions
diff --git a/source/blender/bmesh/operators/bmo_inset.c b/source/blender/bmesh/operators/bmo_inset.c
index e0285dc960a..a23f8f33b71 100644
--- a/source/blender/bmesh/operators/bmo_inset.c
+++ b/source/blender/bmesh/operators/bmo_inset.c
@@ -395,9 +395,6 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
const float thickness = BMO_slot_float_get(op->slots_in, "thickness");
const float depth = BMO_slot_float_get(op->slots_in, "depth");
- /* store vert coords in normals, needed for 'use_edge_rail' */
-#define USE_VERTNORMAL_HACK
-
int edge_info_len = 0;
BMIter iter;
@@ -410,6 +407,11 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
int iface_array_len;
MemArena *interp_arena = NULL;
+ /* BMVert original location storage */
+ const bool use_vert_coords_orig = use_edge_rail;
+ MemArena *vert_coords_orig = NULL;
+ GHash *vert_coords = NULL;
+
BMVert *v;
BMEdge *e;
BMFace *f;
@@ -456,11 +458,6 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
BM_elem_index_set(e, -1); /* set_dirty! */
}
-
-#ifdef USE_VERTNORMAL_HACK
- copy_v3_v3(e->v1->no, e->v1->co);
- copy_v3_v3(e->v2->no, e->v2->co);
-#endif
}
bm->elem_index_dirty |= BM_EDGE;
@@ -479,6 +476,22 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
}
}
+
+ if (use_vert_coords_orig) {
+ vert_coords_orig = BLI_memarena_new(BLI_MEMARENA_STD_BUFSIZE, __func__);
+ vert_coords = BLI_ghash_ptr_new(__func__);
+ }
+
+ /* util macros */
+#define VERT_ORIG_STORE(_v) { \
+ float *_co = BLI_memarena_alloc(vert_coords_orig, sizeof(float[3])); \
+ copy_v3_v3(_co, (_v)->co); \
+ BLI_ghash_insert(vert_coords, _v, _co); \
+ } (void)0
+#define VERT_ORIG_GET(_v) \
+ (const float *)BLI_ghash_lookup_default(vert_coords, (_v), (_v)->co)
+
+
for (i = 0, es = edge_info; i < edge_info_len; i++, es++) {
if ((es->l = bm_edge_is_mixed_face_tag(es->e_old->l))) {
/* do nothing */
@@ -572,9 +585,9 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
/* in some cases the edge doesn't split off */
if (r_vout_len == 1) {
-#ifdef USE_VERTNORMAL_HACK
- copy_v3_v3(vout[0]->no, vout[0]->co);
-#endif
+ if (use_vert_coords_orig) {
+ VERT_ORIG_STORE(vout[0]);
+ }
MEM_freeN(vout);
continue;
}
@@ -586,9 +599,9 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
int vert_edge_tag_tot = 0;
int vecpair[2];
-#ifdef USE_VERTNORMAL_HACK
- copy_v3_v3(v_split->no, v_split->co);
-#endif
+ if (use_vert_coords_orig) {
+ VERT_ORIG_STORE(v_split);
+ }
/* find adjacent */
BM_ITER_ELEM (e, &iter, v_split, BM_EDGES_OF_VERT) {
@@ -647,11 +660,12 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
/* note that we can't use 'l_other_a->v' directly since it
* may be inset and give a feedback loop. */
-#ifdef USE_VERTNORMAL_HACK
- co_other = l_other_a->v->no;
-#else
- co_other = l_other_a->v->co;
-#endif
+ if (use_vert_coords_orig) {
+ co_other = VERT_ORIG_GET(l_other_a->v);
+ }
+ else {
+ co_other = l_other_a->v->co;
+ }
sub_v3_v3v3(tvec, co_other, v_split->co);
is_mid = false;
@@ -810,6 +824,11 @@ void bmo_inset_region_exec(BMesh *bm, BMOperator *op)
}
}
+ if (use_vert_coords_orig) {
+ BLI_memarena_free(vert_coords_orig);
+ BLI_ghash_free(vert_coords, NULL, NULL);
+ }
+
if (use_interpolate) {
for (i = 0; i < iface_array_len; i++) {
if (iface_array[i]) {