diff org/body.org @ 215:f283c62bd212

fixed long standing problem with orientation of eyes in blender, fleshed out text in vision.org
author Robert McIntyre <rlm@mit.edu>
date Fri, 10 Feb 2012 02:19:24 -0700
parents 97b8caf66824
children 7bf3e3d8fb26
line wrap: on
line diff
     1.1 --- a/org/body.org	Thu Feb 09 09:04:17 2012 -0700
     1.2 +++ b/org/body.org	Fri Feb 10 02:19:24 2012 -0700
     1.3 @@ -491,13 +491,15 @@
     1.4  #+begin_src clojure 
     1.5  (in-ns 'cortex.test.body)
     1.6  
     1.7 +(defn worm []
     1.8 + (load-blender-model
     1.9 +            "Models/test-creature/worm.blend"))
    1.10 +
    1.11  (defn worm-1 []
    1.12    (let [timer (RatchetTimer. 60)]
    1.13      (world
    1.14       (nodify
    1.15 -      [(doto
    1.16 -           (load-blender-model
    1.17 -            "Models/test-creature/worm.blend")
    1.18 +      [(doto (worm)
    1.19           (body!))
    1.20         (floor)])
    1.21       (merge standard-debug-controls debug-control)