From 0a60bc14d63c898eef534fb5cdb7dc834fc74d90 Mon Sep 17 00:00:00 2001 From: Joseph Eagar Date: Sat, 9 Apr 2011 23:19:11 +0000 Subject: =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. --- extern/SConscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'extern/SConscript') diff --git a/extern/SConscript b/extern/SConscript index bd73d71f123..061bd1ba6a3 100644 --- a/extern/SConscript +++ b/extern/SConscript @@ -4,6 +4,9 @@ Import('env') SConscript(['glew/SConscript']) +if env['WITH_BF_ELTOPO']: + SConscript(['eltopo/SConscript']) + if env['WITH_BF_BULLET']: SConscript(['bullet2/src/SConscript']) -- cgit v1.2.3