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-03-31 02:57:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-31 02:58:17 +0400
commitc24c34324c9c4b97d3a9c761ac9485f20a1baf56 (patch)
tree5c28401e0c82c527eee2f0e7439ade60e995a70b /source/blender/editors/util
parentf1962f187f432fadc03b92b64b0bd743a267bf95 (diff)
Code cleanup: remove unused members of TransVert
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/ed_transverts.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/editors/util/ed_transverts.c b/source/blender/editors/util/ed_transverts.c
index 9f41642280b..624ba3756b7 100644
--- a/source/blender/editors/util/ed_transverts.c
+++ b/source/blender/editors/util/ed_transverts.c
@@ -367,8 +367,6 @@ void ED_transverts_create_from_obedit(TransVertStore *tvs, Object *obedit, const
if (bezt->f2 & SELECT) {
copy_v3_v3(tv->oldloc, bezt->vec[1]);
tv->loc = bezt->vec[1];
- tv->val = &(bezt->alfa);
- tv->oldval = bezt->alfa;
tv->flag = bezt->f2 & SELECT;
tv++;
tvs->transverts_tot++;
@@ -392,8 +390,6 @@ void ED_transverts_create_from_obedit(TransVertStore *tvs, Object *obedit, const
if (bp->f1 & SELECT) {
copy_v3_v3(tv->oldloc, bp->vec);
tv->loc = bp->vec;
- tv->val = &(bp->alfa);
- tv->oldval = bp->alfa;
tv->flag = bp->f1 & SELECT;
tv++;
tvs->transverts_tot++;
@@ -416,8 +412,6 @@ void ED_transverts_create_from_obedit(TransVertStore *tvs, Object *obedit, const
if (ml->flag & SELECT) {
tv->loc = &ml->x;
copy_v3_v3(tv->oldloc, tv->loc);
- tv->val = &(ml->rad);
- tv->oldval = ml->rad;
tv->flag = SELECT;
tv++;
tvs->transverts_tot++;