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:
authorJiri Hnidek <jiri.hnidek@tul.cz>2008-05-09 01:33:15 +0400
committerJiri Hnidek <jiri.hnidek@tul.cz>2008-05-09 01:33:15 +0400
commit5d8178a120a6bb0e92e5480b1a0aa8e18267a067 (patch)
tree76ea6ea06bf198d49cf9e64e398ce0962cd7ef9b /source/blender/blenkernel/intern/mball.c
parent7be03f2ae5fa545e2e396791714629db73c4f7fa (diff)
Potential bug fix of #10999.
Diffstat (limited to 'source/blender/blenkernel/intern/mball.c')
-rw-r--r--source/blender/blenkernel/intern/mball.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/mball.c b/source/blender/blenkernel/intern/mball.c
index 16916381c95..0cd7736f6c3 100644
--- a/source/blender/blenkernel/intern/mball.c
+++ b/source/blender/blenkernel/intern/mball.c
@@ -1363,8 +1363,9 @@ void find_first_points(PROCESS *mbproc, MetaBall *mb, int a)
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));