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
path: root/intern
diff options
context:
space:
mode:
authorover0219 <over0219@umn.edu>2020-06-03 07:26:39 +0300
committerover0219 <over0219@umn.edu>2020-06-03 07:26:39 +0300
commit9ceb298156044e616bcea97b3c82f1c416ec4385 (patch)
tree3fdbfc815f87334f3e545201566aaf325582db2f /intern
parent9ba5c8b90aa6245c569f7e66b0cd472beb59b5a5 (diff)
still pretty buggy. The solver should be working, but lattice is too lousy to see. The interface between blender and solver needs work too, doesn't seem to reset as often as I think it should be?
Diffstat (limited to 'intern')
-rw-r--r--intern/softbody/admmpd_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/softbody/admmpd_api.cpp b/intern/softbody/admmpd_api.cpp
index 7f5a238214e..5963c4f71c8 100644
--- a/intern/softbody/admmpd_api.cpp
+++ b/intern/softbody/admmpd_api.cpp
@@ -128,7 +128,7 @@ void admmpd_to_bodypoint(
bpi.pos[0] = xi[0];
bpi.pos[1] = xi[1];
bpi.pos[2] = xi[2];
- bpi.vec[0] = vi[0];
+ bpi.vec[0] = vi[0]; // vec is velocity?
bpi.vec[1] = vi[1];
bpi.vec[2] = vi[2];
}