# HG changeset patch # User Robert McIntyre # Date 1328717423 25200 # Node ID 162b24a8271222948670a7d1e9fcecb9649e7423 # Parent 0e5d5ee5a914cf50a73d4bc3b61303f4f6770edb corrections from conv. with Dylan diff -r 0e5d5ee5a914 -r 162b24a82712 org/body.org --- a/org/body.org Wed Feb 08 08:53:12 2012 -0700 +++ b/org/body.org Wed Feb 08 09:10:23 2012 -0700 @@ -36,18 +36,20 @@ #+caption: EVE from the movie WALL-E. This body plan turns out to be much better suited to my purposes than a more human-like one. [[../images/Eve.jpg]] -The main reason that I use eve-style bodies is so that there will be -correspondence between the AI's vision and the physical presence of -its body. Each individual section is simulated by a separate rigid -body that corresponds exactly with its visual representation and does -not change. Sections are connected by invisible joints that are well -supported in jMonkyeEngine. Bullet, the physics backend for -jMonkeyEngine, can efficiently simulate hundreds of rigid bodies -connected by joints. Sections do not have to stay as one piece -forever; they can be dynamically replaced with multiple sections to -simulate splitting in two. This could be used to simulate retractable -claws or EVE's hands, which could coalece into one object in the -movie. +EVE's body is composed of several rigid components that are held +together by invisible joint constraints. This is what I mean by +"eve-like". The main reason that I use eve-style bodies is so that +there will be correspondence between the AI's vision and the physical +presence of its body. Each individual section is simulated by a +separate rigid body that corresponds exactly with its visual +representation and does not change. Sections are connected by +invisible joints that are well supported in jMonkyeEngine. Bullet, the +physics backend for jMonkeyEngine, can efficiently simulate hundreds +of rigid bodies connected by joints. Sections do not have to stay as +one piece forever; they can be dynamically replaced with multiple +sections to simulate splitting in two. This could be used to simulate +retractable claws or EVE's hands, which could coalece into one object +in the movie. * Solidifying the Body @@ -113,7 +115,7 @@ #+end_html You will notice that the hand has no physical presence -- it's a -hologram through witch everything passes. Therefore, the first thing +hologram through which everything passes. Therefore, the first thing to do is to make it solid. Blender has physics simulation on par with jMonkeyEngine (they both use bullet as their physics backend), but it can be difficult to translate between the two systems, so for now I