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>2007-11-12 12:12:37 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-12 12:12:37 +0300
commit7c717db075f3980b81f753404749305e12b9e216 (patch)
tree29f72f318d9df6c7f5b28b2631f2502b95b97542 /source/blender/src/meshlaplacian.c
parent89317afbdfe19da951aeb2fa7764cc2f60b39f4d (diff)
Mesh Deform Modifier
==================== Forgot to uncomment line again for the weight threshold before I committed, this should save some time and memory space.
Diffstat (limited to 'source/blender/src/meshlaplacian.c')
-rw-r--r--source/blender/src/meshlaplacian.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/meshlaplacian.c b/source/blender/src/meshlaplacian.c
index c689306e848..5d15dbf47b0 100644
--- a/source/blender/src/meshlaplacian.c
+++ b/source/blender/src/meshlaplacian.c
@@ -1617,7 +1617,7 @@ static void meshdeform_matrix_solve(MeshDeformBind *mdb)
/* dynamic bind */
for(b=0; b<mdb->size3; b++) {
- if(mdb->phi[b] >= 0.0f) { //MESHDEFORM_MIN_INFLUENCE) {
+ if(mdb->phi[b] >= MESHDEFORM_MIN_INFLUENCE) {
inf= BLI_memarena_alloc(mdb->memarena, sizeof(*inf));
inf->vertex= a;
inf->weight= mdb->phi[b];