comparison org/touch.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
721 image. In this way a Geometry can know what parts of itself are 721 image. In this way a Geometry can know what parts of itself are
722 touching nearby objects. Reads specially prepared blender files to 722 touching nearby objects. Reads specially prepared blender files to
723 construct this sense automatically." 723 construct this sense automatically."
724 {:author "Robert McIntyre"} 724 {:author "Robert McIntyre"}
725 (:use (cortex world util sense)) 725 (:use (cortex world util sense))
726 (:use clojure.contrib.def)
727 (:import (com.jme3.scene Geometry Node Mesh)) 726 (:import (com.jme3.scene Geometry Node Mesh))
728 (:import com.jme3.collision.CollisionResults) 727 (:import com.jme3.collision.CollisionResults)
729 (:import com.jme3.scene.VertexBuffer$Type) 728 (:import com.jme3.scene.VertexBuffer$Type)
730 (:import (com.jme3.math Triangle Vector3f Vector2f Ray Matrix4f))) 729 (:import (com.jme3.math Triangle Vector3f Vector2f Ray Matrix4f)))
731 #+end_src 730 #+end_src