This commit is contained in:
oakes
2014-01-15 16:42:18 -05:00
parent 72a1d51009
commit e07486ef63

8
src/play_clj/math.clj Normal file
View File

@@ -0,0 +1,8 @@
(ns play-clj.math
(:import [com.badlogic.gdx.math Vector2 Vector3]))
(defn vector
([x y]
(Vector2. x y))
([x y z]
(Vector3. x y z)))