Revision: 14754
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14754
Author:   jiri
Date:     2008-05-08 23:33:15 +0200 (Thu, 08 May 2008)

Log Message:
-----------
Potential bug fix of #10999.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/mball.c

Modified: trunk/blender/source/blender/blenkernel/intern/mball.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/mball.c      2008-05-08 
20:55:16 UTC (rev 14753)
+++ trunk/blender/source/blender/blenkernel/intern/mball.c      2008-05-08 
21:33:15 UTC (rev 14754)
@@ -1363,8 +1363,9 @@
                                        out_v = mbproc->function(out.x, out.y, 
out.z);
 
                                        /* find "first points" on Implicit 
Surface of MetaElemnt ml */
-                                       //converge(&in, &out, in_v, out_v, 
mbproc->function, &mbproc->start, mb, 0);
-                                       workp = in;
+                                       workp.x = in.x;
+                                       workp.y = in.y;
+                                       workp.z = in.z;
                                        workp_v = in_v;
                                        max_len = 
sqrt((out.x-in.x)*(out.x-in.x) + (out.y-in.y)*(out.y-in.y) + 
(out.z-in.z)*(out.z-in.z));
 


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to