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:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-02-13 13:44:36 +0300
committerDaniel Genrich <daniel.genrich@gmx.net>2008-02-13 13:44:36 +0300
commit31922633670f03ceb2e963984e418fecd1a59d40 (patch)
tree0065c9a0f2b528a2e0c206d1a6a08e87a398636d /source/blender/blenkernel/intern/collision.c
parent5c7f41118cc71f44f4aec59d5d4acdee78ddae68 (diff)
Cloth: changes in editmode will influence the velocity by 10% now, changed/add some update calls for the implicit function
Diffstat (limited to 'source/blender/blenkernel/intern/collision.c')
-rw-r--r--source/blender/blenkernel/intern/collision.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/collision.c b/source/blender/blenkernel/intern/collision.c
index 8cadb7e5f1b..8f681ea9865 100644
--- a/source/blender/blenkernel/intern/collision.c
+++ b/source/blender/blenkernel/intern/collision.c
@@ -979,7 +979,7 @@ int cloth_bvh_objcollision(ClothModifierData * clmd, float step, float dt)
Cloth *cloth=NULL;
Object *coll_ob=NULL;
BVH *cloth_bvh=NULL;
- long i=0, j = 0, numfaces = 0, numverts = 0, k = 0;
+ long i=0, j = 0, numfaces = 0, numverts = 0;
unsigned int result = 0, ic = 0, rounds = 0; // result counts applied collisions; ic is for debug output;
ClothVertex *verts = NULL;
float tnull[3] = {0,0,0};