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:
authorJoseph Eagar <joeedh@gmail.com>2011-04-10 03:19:11 +0400
committerJoseph Eagar <joeedh@gmail.com>2011-04-10 03:19:11 +0400
commit0a60bc14d63c898eef534fb5cdb7dc834fc74d90 (patch)
treeedf3c3396557d73042c50ae1a12318044ca57eaa /extern/CMakeLists.txt
parent28478967f49daff2e6a3d40168147b1a2095b4c6 (diff)
=cloth collisions=
Plugged the eltopo library into the cloth solver. I was playing with it earlier, and it's so easy to use I decided to quickly put it in (trunk's) cloth. See http://www.cs.ubc.ca/labs/imager/tr/2009/eltopo/eltopo.html . The authors are on the bleeding edge of continuous collision detection (one of them did ILM's cloth sim). I don't really have to time to plug it into softbody, particles, bullet, fluid, etc, but doing so would be pretty straightforward. I'll leave that up to someone else. To use, turn on USE_ELTOPO (in cmake) or WITH_BF_ELTOPO in scons.
Diffstat (limited to 'extern/CMakeLists.txt')
-rw-r--r--extern/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt
index d74c6683f2c..c146d6dba83 100644
--- a/extern/CMakeLists.txt
+++ b/extern/CMakeLists.txt
@@ -31,6 +31,10 @@ if(WITH_BULLET)
add_subdirectory(bullet2)
endif()
+if(WITH_ELTOPO)
+ add_subdirectory(eltopo)
+endif()
+
if(WITH_BINRELOC)
add_subdirectory(binreloc)
endif()