changeset 179:11bd5f0625ad

organized imports in touch
author Robert McIntyre <rlm@mit.edu>
date Sat, 04 Feb 2012 07:09:40 -0700
parents 6fba17a74a57
children f1b078375484
files org/touch.org
diffstat 1 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/org/touch.org	Sat Feb 04 07:05:54 2012 -0700
     1.2 +++ b/org/touch.org	Sat Feb 04 07:09:40 2012 -0700
     1.3 @@ -26,13 +26,11 @@
     1.4    {:author "Robert McIntyre"}
     1.5    (:use (cortex world util sense))
     1.6    (:use clojure.contrib.def)
     1.7 -  (:import com.jme3.scene.Geometry)
     1.8 +  (:import (com.jme3.scene Geometry Node Mesh))
     1.9    (:import com.jme3.collision.CollisionResults)
    1.10 -  (:import jme3tools.converters.ImageToAwt)
    1.11 -  (:import (com.jme3.math Triangle Vector3f Ray)))
    1.12 +  (:import com.jme3.scene.VertexBuffer$Type)
    1.13 +  (:import (com.jme3.math Triangle Vector3f Vector2f Ray Matrix4f)))
    1.14     
    1.15 -(cortex.import/mega-import-jme3)
    1.16 -
    1.17  (defn triangles
    1.18    "Return a sequence of all the Triangles which compose a given
    1.19    Geometry."