comparison org/proprioception.org @ 317:bb3f8a4af87f

removed references to defvar from clojure.contrib.def since the def from 1.4 now allows for docstrings
author Robert McIntyre <rlm@mit.edu>
date Tue, 28 Feb 2012 14:04:21 -0600
parents 2c7fbcbd5ebb
children 702b5c78c2de
comparison
equal deleted inserted replaced
316:2c7fbcbd5ebb 317:bb3f8a4af87f
341 "Simulate the sense of proprioception (ability to detect the 341 "Simulate the sense of proprioception (ability to detect the
342 relative positions of body parts with respect to other body parts) 342 relative positions of body parts with respect to other body parts)
343 in jMonkeyEngine3. Reads specially prepared blender files to 343 in jMonkeyEngine3. Reads specially prepared blender files to
344 automatically generate proprioceptive senses." 344 automatically generate proprioceptive senses."
345 (:use (cortex world util sense body)) 345 (:use (cortex world util sense body))
346 (:use clojure.contrib.def)
347 (:import com.jme3.scene.Node) 346 (:import com.jme3.scene.Node)
348 (:import java.awt.image.BufferedImage) 347 (:import java.awt.image.BufferedImage)
349 (:import (com.jme3.math Vector3f Quaternion))) 348 (:import (com.jme3.math Vector3f Quaternion)))
350 #+end_src 349 #+end_src
351 350