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
path: root/source
diff options
context:
space:
mode:
authorAndre Susano Pinto <andresusanopinto@gmail.com>2009-04-26 17:26:18 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2009-04-26 17:26:18 +0400
commitaf1c25c9d0b69a268a2ac824b8ab0e3032d5f110 (patch)
tree26c476073e303147dc41e14b5ce6b646463b15cf /source
parentba563216e9ec4e7c3e55ca343948d925a2dc1651 (diff)
Fixed shrinkwrap bug:
shrinkwrap wasn't using the updated coordinates/normals of vertexs when the DerivedMesh had been modified by a previous modifier. before revision 19744, users would only notice a strange behaviour of shrinkwrap in projection mode (because it was using the wrong normals) (jpbouza reported this) after revision 19744 this bug was "bigger". Anyway it's fixed now :)
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/modifier.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index 10bcb2e09f2..c9f6bc18abd 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -7915,7 +7915,7 @@ static void shrinkwrapModifier_deformVerts(ModifierData *md, Object *ob, Derived
else if(ob->type==OB_LATTICE) dm = NULL;
else return;
- if(dm != NULL && (dataMask & CD_MVERT))
+ if(dm != NULL && (dataMask & (1<<CD_MVERT)))
{
CDDM_apply_vert_coords(dm, vertexCos);
CDDM_calc_normals(dm);
@@ -7940,7 +7940,7 @@ static void shrinkwrapModifier_deformVertsEM(ModifierData *md, Object *ob, EditM
else if(ob->type==OB_LATTICE) dm = NULL;
else return;
- if(dm != NULL && (dataMask & CD_MVERT))
+ if(dm != NULL && (dataMask & (1<<CD_MVERT)))
{
CDDM_apply_vert_coords(dm, vertexCos);
CDDM_calc_normals(dm);