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:
authorJason Hays <jason_hays22@mymail.eku.edu>2011-09-18 21:10:28 +0400
committerJason Hays <jason_hays22@mymail.eku.edu>2011-09-18 21:10:28 +0400
commit73863a1da5436ec5f63566e40ffa07ecbb903c69 (patch)
treeda4e95ba22f325d17402625070afcf617210b079 /source/blender/editors/armature/meshlaplacian.c
parente234cb463689a19436f9d5fa25111433b1d531d5 (diff)
Split do_weight_paint_vertex() to isolate the simple case.
Added a tool-tip to the "fix deforms" op. Removed code markers: "Radish"
Diffstat (limited to 'source/blender/editors/armature/meshlaplacian.c')
-rw-r--r--source/blender/editors/armature/meshlaplacian.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c
index 20cf91e870a..ad1d1f23c2b 100644
--- a/source/blender/editors/armature/meshlaplacian.c
+++ b/source/blender/editors/armature/meshlaplacian.c
@@ -657,7 +657,7 @@ void heat_bone_weighting(Object *ob, Mesh *me, float (*verts)[3], int numsource,
int *vertsflipped = NULL, *mask= NULL;
int a, totface, j, bbone, firstsegment, lastsegment;
- /* Radish */
+
MVert *mv = me->mvert;
int use_vert_sel= FALSE;
@@ -670,7 +670,7 @@ void heat_bone_weighting(Object *ob, Mesh *me, float (*verts)[3], int numsource,
for(totface=0, a=0, mface=me->mface; a<me->totface; a++, mface++) {
totface++;
if(mface->v4) totface++;
- /* Radish (added selectedVerts content for vertex mask, they used to just equal 1) */
+ /* (added selectedVerts content for vertex mask, they used to just equal 1) */
if(mask && ((mface->flag & ME_FACE_SEL) || use_vert_sel)) {
mask[mface->v1]= use_vert_sel ? ((mv+mface->v1)->flag & 1): 1;
mask[mface->v2]= use_vert_sel ? ((mv+mface->v2)->flag & 1): 1;