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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-04-04 21:28:31 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-04-04 21:28:31 +0400
commit3303b838c6e97482b188d1ace24280f4ec8c9ae2 (patch)
tree185b1bd4936906fe7bbcb79609a98138d21a3e70 /source/blender/editors/mesh
parent7b9fed73922f033041164a992ed806efd35793e3 (diff)
Fix for the fix, making hurried last minute changes is not a good idea :)
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_lib.c b/source/blender/editors/mesh/editmesh_lib.c
index 670ca6235ba..b7ed6ec14ca 100644
--- a/source/blender/editors/mesh/editmesh_lib.c
+++ b/source/blender/editors/mesh/editmesh_lib.c
@@ -2006,8 +2006,8 @@ void recalc_editnormals(EditMesh *em)
zero_v3(eve->no);
for(efa= em->faces.first; efa; efa=efa->next) {
- // float *n4= (efa->v4)? efa->v4->no: NULL;
- // float *c4= (efa->v4)? efa->v4->co: NULL;
+ float *n4= (efa->v4)? efa->v4->no: NULL;
+ float *c4= (efa->v4)? efa->v4->co: NULL;
if(efa->v4) {
normal_quad_v3(efa->n, efa->v1->co, efa->v2->co, efa->v3->co, efa->v4->co);